[SCM] live-build branch, upstream, updated. upstream/3.0_a25-1-gc256e79

Daniel Baumann daniel at debian.org
Thu Aug 4 19:54:05 UTC 2011


The following commit has been merged in the upstream branch:
commit c256e79f06d53a5e0ebcf7117257b0580632d51d
Author: Daniel Baumann <daniel at debian.org>
Date:   Thu Aug 4 21:54:39 2011 +0200

    Adding upstream version 3.0~a26.

diff --git a/Makefile b/Makefile
index c0a5061..e38a543 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,8 @@ build:
 install:
 	# Installing shared data
 	mkdir -p $(DESTDIR)/usr/share/live/build
-	cp -r archives cgi data examples functions scripts includes package-lists templates $(DESTDIR)/usr/share/live/build
+	cp -r cgi data examples functions scripts includes package-lists templates $(DESTDIR)/usr/share/live/build
+	cp -r share/* $(DESTDIR)/usr/share/live/build
 
 	# Installing executables
 	mkdir -p $(DESTDIR)/usr/bin
diff --git a/VERSION b/VERSION
index 4216f4d..7577de0 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0~a25
+3.0~a26
diff --git a/cron/TODO b/cron/TODO
index 231d208..d3a90d3 100644
--- a/cron/TODO
+++ b/cron/TODO
@@ -1,5 +1,10 @@
-* add headers to log with build date and versions.
-* send summary mails to debian-live at l.d.o.
-* do not hardcode git urls.
-* add support for git branches.
-* add support for git snapshot packages.
+General:
+  * add headers to log with build date and versions.
+  * send summary mails to debian-live at l.d.o.
+  * do not hardcode git urls.
+  * add support for git branches.
+  * add live-build-cron-packages.
+
+ * logrotate for images trimming
+ * branch specific git version per release
+ * re-use existing git repository for local lb clone
diff --git a/cron/live-build-cron-images b/cron/live-build-cron-images
index 6e89b77..334d039 100755
--- a/cron/live-build-cron-images
+++ b/cron/live-build-cron-images
@@ -1,23 +1,11 @@
 #!/bin/sh
 
-## live-build-cron-images(7) - FIXME
-## Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2011 Daniel Baumann <daniel at debian.org>
 ##
-## This program is free software: you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation, either version 3 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with this program. If not, see <http://www.gnu.org/licenses/>.
-##
-## The complete text of the GNU General Public License
-## can be found in /usr/share/common-licenses/GPL-3 file.
+## 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
@@ -42,8 +30,11 @@ Init ()
 		exit 0
 	fi
 
-	if [ -z "${LIVE_BUILD_CRON_IMAGES_DIRECTORY}" ]
+	mkdir -p "${LIVE_BUILD_CRON_IMAGES_DIRECTORY}"
+
+	if [ ! -d "${LIVE_BUILD_CRON_IMAGES_DIRECTORY}" ]
 	then
+		echo "E: live-build-cron-images directory not set."
 		exit 1
 	fi
 
@@ -58,18 +49,18 @@ Init ()
 
 Setup ()
 {
-	TMPDIR="$(mktemp -d -t live-build-cron-images.XXXXXXXX)"
+	_TMPDIR="$(mktemp -d -t live-build-cron-images.XXXXXXXX)"
 
 	case "${LIVE_BUILD_CRON_IMAGES_BUILD}" in
 		git)
-			cd "${TMPDIR}"
+			cd "${_TMPDIR}"
 			git clone git://live.debian.net/git/live-build.git
 			git checkout debian-old-2.0
 
-			LB_BASE="${TMPDIR}/live-build"
+			LB_BASE="${_TMPDIR}/live-build"
 			export LB_BASE
 
-			PATH="${PATH}:${TMPDIR}/live-build/scripts/build"
+			PATH="${PATH}:${_TMPDIR}/live-build/scripts/build"
 			export PATH
 			;;
 
@@ -82,10 +73,10 @@ Setup ()
 					dget "http://live.debian.net/archive/packages/live-build/${LIVE_BUILD}/live-build_${LIVE_BUILD}.dsc"
 					dpkg-source -x live-build_${LIVE_BUILD}.dsc
 
-					LB_BASE="${TMPDIR}/live-build-$(echo ${LIVE_BUILD} | awk -F- '{ print $1 }')"
+					LB_BASE="${_TMPDIR}/live-build-$(echo ${LIVE_BUILD} | awk -F- '{ print $1 }')"
 					export LB_BASE
 
-					PATH="${PATH}:${TMPDIR}/live-build-$(echo ${LIVE_BUILD} | awk -F- '{ print $1 }')/scripts/build"
+					PATH="${PATH}:${_TMPDIR}/live-build-$(echo ${LIVE_BUILD} | awk -F- '{ print $1 }')/scripts/build"
 					export PATH
 				else
 					echo "E: dget - command not found"
@@ -100,8 +91,8 @@ Setup ()
 			;;
 	esac
 
-	mkdir -p "${TMPDIR}/build"
-	cd "${TMPDIR}/build"
+	mkdir -p "${_TMPDIR}/build"
+	cd "${_TMPDIR}/build"
 
 	# live-boot
 	if [ -n "${LIVE_BOOT}" ]
@@ -163,7 +154,7 @@ Setup ()
 
 Build ()
 {
-	cd "${TMPDIR}/build"
+	cd "${_TMPDIR}/build"
 
 	for DISTRIBUTION in ${DISTRIBUTIONS}
 	do
@@ -179,17 +170,28 @@ Build ()
 			rm -rf cache/stages_rootfs
 			rm -f config/* || true
 
+			LB_VERSION="$(lb --version | awk '/^live-build, version / { print $3 }')"
+
+			case "${LB_VERSION}" in
+				2.0*)
+					_PACKAGE_LISTS="--packages-lists ${FLAVOUR}"
+					;;
+
+				3.0*)
+					_PACKAGE_LISTS="--package-lists ${FLAVOUR}"
+					;;
+			esac
+
 			# FIXME: cdebootstrap
 			lb config --clean \
 				--bootstrap cdebootstrap \
 				--cache-stages "bootstrap rootfs" \
 				--debian-installer ${DEBIAN_INSTALLER} \
-				--debian-installer-distribution ${DEBIAN_INSTALLER_DISTRIBUTION} \
 				--distribution ${DISTRIBUTION} \
 				--mirror-bootstrap ${MIRROR_BOOTSTRAP} \
 				--mirror-chroot ${MIRROR_CHROOT} \
 				--mirror-chroot-security ${MIRROR_CHROOT_SECURITY} \
-				--packages-lists ${FLAVOUR}
+				${_PACKAGE_LISTS}
 
 			lb build 2>&1 | tee debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso.log
 
@@ -251,7 +253,7 @@ Install ()
 		BUILD="$((${BUILD} + 1))"
 	done
 
-	cd "${TMPDIR}/build"
+	cd "${_TMPDIR}/build"
 
 	# Move iso images
 	if ls debian-live-${DISTRIBUTION}-${ARCHITECTURE}-*.iso* > /dev/null 2>&1
@@ -309,11 +311,11 @@ Install ()
 
 Clean ()
 {
-	cd "${TMPDIR}/build"
+	cd "${_TMPDIR}/build"
 	lb clean --purge
 
 	cd "${CURDIR}"
-	rm -rf "${TMPDIR}"
+	rm -rf "${_TMPDIR}"
 }
 
 Trace ()
diff --git a/cron/live-build-cron-manual b/cron/live-build-cron-manual
index 7bf9a86..7a7c4a0 100755
--- a/cron/live-build-cron-manual
+++ b/cron/live-build-cron-manual
@@ -1,23 +1,11 @@
 #!/bin/sh
 
-## live-build-cron-manual(7) - FIXME
-## Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2011 Daniel Baumann <daniel at debian.org>
 ##
-## This program is free software: you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation, either version 3 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with this program. If not, see <http://www.gnu.org/licenses/>.
-##
-## The complete text of the GNU General Public License
-## can be found in /usr/share/common-licenses/GPL-3 file.
+## 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
@@ -39,31 +27,35 @@ Init ()
 
 	if [ "${LIVE_BUILD_CRON_MANUAL}" != "true" ]
 	then
-		echo "live-build-cron-manual disabled."
+		echo "I: live-build-cron-manual disabled."
 		exit 0
 	fi
 
-	if [ -z "${LIVE_BUILD_CRON_MANUAL_DIRECTORY}" ]
+	mkdir -p "${LIVE_BUILD_CRON_MANUAL_DIRECTORY}"
+
+	if [ ! -d "${LIVE_BUILD_CRON_MANUAL_DIRECTORY}" ]
 	then
-		echo "live-build-cron-manual directory not set."
+		echo "E: live-build-cron-manual directory not set."
 		exit 1
 	fi
 }
 
 Setup ()
 {
-	TMPDIR="$(mktemp -d -t live-build-cron-manual.XXXXXXXX)"
+	_TMPDIR="$(mktemp -d -t live-build-cron-manual.XXXXXXXX)"
 
-	cd "${TMPDIR}"
+	cd "${_TMPDIR}"
 	git clone git://live.debian.net/git/live-manual.git
+
 	cd live-manual && git checkout debian-next
 }
 
 Build ()
 {
-	cd "${TMPDIR}/live-manual"
+	cd "${_TMPDIR}/live-manual"
 
-	echo "Using the following sisu package versions: " | tee build.log
+	echo "live-build-cron-manual: $(LC_ALL=C date -R) on ${_HOSTNAME}" | tee build.log
+	echo "Using the following sisu package versions: " | tee -a build.log
 
 	for _PACKAGE in $(dpkg --get-selections | awk '/^sisu/ { print $1 }')
 	do
@@ -78,13 +70,13 @@ Install ()
 	cd "${LIVE_BUILD_CRON_MANUAL_DIRECTORY}"
 	rm -rf *
 
-	mv "${TMPDIR}/live-manual/build/"* ./
-	mv "${TMPDIR}/live-manual/build.log" ./
+	mv "${_TMPDIR}/live-manual/build/"* ./
+	mv "${_TMPDIR}/live-manual/build.log" ./
 }
 
 Clean ()
 {
-	rm -rf "${TMPDIR}"
+	rm -rf "${_TMPDIR}"
 }
 
 Trace ()
diff --git a/functions/cache.sh b/functions/cache.sh
index c297831..2b75266 100755
--- a/functions/cache.sh
+++ b/functions/cache.sh
@@ -36,7 +36,9 @@ Save_cache ()
 	if [ "${LB_CACHE}" = "true" ] && [ "${LB_CACHE_PACKAGES}" = "true" ]
 	then
 		# Cleaning current cache
-		Chroot chroot "apt-get autoclean"
+		# In case of interrupted or incomplete builds, this may return an error,
+		# but we still do want to save the cache.
+		Chroot chroot "apt-get autoclean" || true
 
 		if ls chroot/var/cache/apt/archives/*.deb > /dev/null 2>&1
 		then
diff --git a/functions/chroot.sh b/functions/chroot.sh
index dff13d0..b20fe77 100755
--- a/functions/chroot.sh
+++ b/functions/chroot.sh
@@ -18,10 +18,10 @@ Chroot ()
 
 	if [ "${LB_USE_FAKEROOT}" != "true" ]
 	then
-		${LB_ROOT_COMMAND} /usr/sbin/chroot "${CHROOT}" /usr/bin/env -i HOME="/root" PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" TERM="${TERM}" ftp_proxy="${LB_APT_FTP_PROXY}" http_proxy="${LB_APT_HTTP_PROXY}" DEBIAN_FRONTEND="${LB_DEBCONF_FRONTEND}" DEBIAN_PRIORITY="${LB_DEBCONF_PRIORITY}" DEBCONF_NOWARNINGS="${LB_DEBCONF_NOWARNINGS}" XORG_CONFIG="custom" ${COMMANDS}
+		${LB_ROOT_COMMAND} ${_LINUX32} /usr/sbin/chroot "${CHROOT}" /usr/bin/env -i HOME="/root" PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" TERM="${TERM}" ftp_proxy="${LB_APT_FTP_PROXY}" http_proxy="${LB_APT_HTTP_PROXY}" DEBIAN_FRONTEND="${LB_DEBCONF_FRONTEND}" DEBIAN_PRIORITY="${LB_DEBCONF_PRIORITY}" DEBCONF_NOWARNINGS="${LB_DEBCONF_NOWARNINGS}" XORG_CONFIG="custom" ${COMMANDS}
 	else
 		# Building with fakeroot/fakechroot
-		${LB_ROOT_COMMAND} /usr/sbin/chroot "${CHROOT}" ${COMMANDS}
+		${LB_ROOT_COMMAND} ${_LINUX32} /usr/sbin/chroot "${CHROOT}" ${COMMANDS}
 	fi
 
 	return "${?}"
diff --git a/functions/common.sh b/functions/common.sh
index bb0c62e..92c43c2 100755
--- a/functions/common.sh
+++ b/functions/common.sh
@@ -9,7 +9,7 @@
 
 
 PROGRAM="live-build"
-VERSION="3.0~a23-1"
+VERSION="3.0~a26-1"
 CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
 
 PATH="${PWD}/auto/scripts:${PATH}"
diff --git a/functions/defaults.sh b/functions/defaults.sh
index ffef6c3..0bd1b1a 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -14,7 +14,7 @@ Set_defaults ()
 
 	LB_BASE="${LB_BASE:-/usr/share/live/build}"
 
-	# Setting mode (currently: debian, emdebian, progress, and ubuntu)
+	# Setting mode (currently: debian, emdebian, progress, ubuntu and kubuntu)
 	LB_MODE="${LB_MODE:-debian}"
 
 	# Setting distribution name
@@ -24,7 +24,7 @@ Set_defaults ()
 			LB_DERIVATIVE="true"
 			;;
 
-		ubuntu)
+		ubuntu|kubuntu)
 			LB_DISTRIBUTION="${LB_DISTRIBUTION:-karmic}"
 			LB_DERIVATIVE="false"
 			;;
@@ -73,18 +73,18 @@ Set_defaults ()
 	APT_OPTIONS="${APT_OPTIONS:---yes}"
 	APTITUDE_OPTIONS="${APTITUDE_OPTIONS:---assume-yes}"
 
-	BZIP2_OPTIONS="${BZIP2_OPTIONS:---best}"
+	BZIP2_OPTIONS="${BZIP2_OPTIONS:--6}"
 
-	GZIP_OPTIONS="${GZIP_OPTIONS:---best}"
+	GZIP_OPTIONS="${GZIP_OPTIONS:--6}"
 
 	if gzip --help | grep -qs "\-\-rsyncable"
 	then
 		GZIP_OPTIONS="$(echo ${GZIP_OPTIONS} | sed -e 's|--rsyncable||') --rsyncable"
 	fi
 
-	LZIP_OPTIONS="${LZIP_OPTIONS:---best}"
+	LZIP_OPTIONS="${LZIP_OPTIONS:--6}"
 
-	LZMA_OPTIONS="${LZMA_OPTIONS:---best}"
+	LZMA_OPTIONS="${LZMA_OPTIONS:--6}"
 
 	# Setting apt recommends
 	case "${LB_MODE}" in
@@ -140,7 +140,7 @@ Set_defaults ()
 	case "${LB_INITRAMFS}" in
 		auto)
 			case "${LB_MODE}" in
-				ubuntu)
+				ubuntu|kubuntu)
 					LB_INITRAMFS="casper"
 					;;
 
@@ -159,7 +159,7 @@ Set_defaults ()
 
 	# Setting initsystem
 	case "${LB_MODE}" in
-		ubuntu)
+		ubuntu|kubuntu)
 			case "${LB_INITRAMFS}" in
 				live-boot)
 					LB_INITSYSTEM="${LB_INITSYSTEM:-upstart}"
@@ -217,6 +217,13 @@ Set_defaults ()
 		fi
 	fi
 
+	if [ "${LB_ARCHITECTURE}" = "i386" ] && [ "$(uname -m)" = "x86_64" ]
+	then
+		_LINUX32="linux32"
+	else
+		_LINUX32=""
+	fi
+
 	# Setting tasksel
 	case "${LB_DISTRIBUTION}" in
 		squeeze)
@@ -320,7 +327,7 @@ Set_defaults ()
 			LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://archive.progress-linux.org/progress/}"
 			;;
 
-		ubuntu)
+		ubuntu|kubuntu)
 			case "${LB_ARCHITECTURES}" in
 				amd64|i386)
 					LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://archive.ubuntu.com/ubuntu/}"
@@ -355,7 +362,7 @@ Set_defaults ()
 			LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT}}"
 			;;
 
-		ubuntu)
+		ubuntu|kubuntu)
 			case "${LB_ARCHITECTURES}" in
 				amd64|i386)
 					LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://security.ubuntu.com/ubuntu/}"
@@ -382,7 +389,7 @@ Set_defaults ()
 			LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-none}"
 			;;
 
-		ubuntu)
+		ubuntu|kubuntu)
 			case "${LB_ARCHITECTURES}" in
 				amd64|i386)
 					LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-http://archive.ubuntu.com/ubuntu/}"
@@ -436,7 +443,7 @@ Set_defaults ()
 			LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_PARENT_MIRROR_BINARY}}"
 			;;
 
-		ubuntu)
+		ubuntu|kubuntu)
 			case "${LB_ARCHITECTURES}" in
 				amd64|i386)
 					LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://archive.ubuntu.com/ubuntu/}"
@@ -468,7 +475,7 @@ Set_defaults ()
 			LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_MIRROR_CHROOT}}"
 			;;
 
-		ubuntu)
+		ubuntu|kubuntu)
 			case "${LB_ARCHITECTURES}" in
 				amd64|i386)
 					LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://security.ubuntu.com/ubuntu/}"
@@ -495,7 +502,7 @@ Set_defaults ()
 			LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-none}"
 			;;
 
-		ubuntu)
+		ubuntu|kubuntu)
 			case "${LB_ARCHITECTURES}" in
 				amd64|i386)
 					LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-http://archive.ubuntu.com/ubuntu/}"
@@ -532,13 +539,13 @@ Set_defaults ()
 
 	case "${LB_MODE}" in
 		progress)
-			LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
+			LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_CHROOT}}"
 			LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_MIRROR_CHROOT}}"
 			;;
 
 		*)
-			LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
-			LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_DEBIAN_INSTALLER}}"
+			LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_CHROOT}}"
+			LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_CHROOT}}"
 			;;
 	esac
 
@@ -549,7 +556,7 @@ Set_defaults ()
 			LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS:-main}"
 			;;
 
-		ubuntu)
+		ubuntu|kubuntu)
 			LB_PARENT_ARCHIVE_AREAS="${LB_PARENT_ARCHIVE_AREAS:-main restricted}"
 			LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS:-${LB_PARENT_ARCHIVE_AREAS}}"
 			;;
@@ -574,14 +581,30 @@ Set_defaults ()
 	# Setting union filesystem
 	LB_UNION_FILESYSTEM="${LB_UNION_FILESYSTEM:-aufs}"
 
-	# LB_HOOKS
+	# Setting distribution hooks
+	case "${LB_MODE}" in
+		*)
+			LB_CHROOT_HOOKS="${LB_CHROOT_HOOKS:-update-apt-file-cache \
+				update-apt-xapian-index \
+				update-mlocate-database \
+				remove-python-py}"
+			;;
+
+		kubuntu)
+			LB_CHROOT_HOOKS="${LB_CHROOT_HOOKS:-update-apt-file-cache \
+				update-apt-xapian-index \
+				update-mlocate-database \
+				remove-gnome-icon-cache \
+				remove-python-py}"
+			;;
+	esac
 
 	# Setting interactive shell/X11/Xnest
 	LB_INTERACTIVE="${LB_INTERACTIVE:-false}"
 
 	# Setting keyring packages
 	case "${LB_MODE}" in
-		ubuntu)
+		ubuntu|kubuntu)
 			LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-ubuntu-keyring}"
 			;;
 
@@ -593,17 +616,14 @@ Set_defaults ()
 	# Setting linux flavour string
 	case "${LB_ARCHITECTURES}" in
 		armel)
-			if [ -z "${LB_LINUX_FLAVOURS}" ]
-			then
-				Echo_error "There is no default kernel flavour defined for your architecture."
-				Echo_error "Please configure it manually with 'lb config -k FLAVOUR'."
-				exit 1
-			fi
+			# armel will have special images: one rootfs image and many additional kernel images.
+			# therefore we default to all available armel flavours
+			LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-iop32x ixp4xx kirkwood orion5x versatile}"
 			;;
 
 		amd64)
 			case "${LB_MODE}" in
-				ubuntu)
+				ubuntu|kubuntu)
 					LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}"
 					;;
 
@@ -627,7 +647,7 @@ Set_defaults ()
 					esac
 					;;
 
-				ubuntu)
+				ubuntu|kubuntu)
 					LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}"
 					;;
 
@@ -673,7 +693,7 @@ Set_defaults ()
 					exit 1
 					;;
 
-				ubuntu)
+				ubuntu|kubuntu)
 					case "${LIST}" in
 						stripped|minimal)
 							LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-powerpc}"
@@ -701,7 +721,7 @@ Set_defaults ()
 
 		s390)
 			case "${LB_MODE}" in
-				progress|ubuntu)
+				progress|ubuntu|kubuntu)
 					Echo_error "Architecture ${LB_ARCHITECTURES} not supported in the ${LB_MODE} mode."
 					exit 1
 					;;
@@ -733,7 +753,7 @@ Set_defaults ()
 
 	# Set linux packages
 	case "${LB_MODE}" in
-		ubuntu)
+		ubuntu|kubuntu)
 			LB_LINUX_PACKAGES="${LB_LINUX_PACKAGES:-linux}"
 			;;
 
@@ -892,12 +912,20 @@ Set_defaults ()
 				;;
 
 			usb*)
-				if [ "${LB_MODE}" = "ubuntu" ] || [ "${LB_DEBIAN_INSTALLER}" = "live" ]
-				then
-					_LB_BOOTAPPEND_PRESEED="file=/cdrom/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
-				else
-					_LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
-				fi
+				case "${LB_MODE}" in
+					ubuntu|kubuntu)
+						if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
+						then
+							_LB_BOOTAPPEND_PRESEED="file=/cdrom/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
+						else
+							_LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
+						fi
+						;;
+
+					*)
+						_LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
+						;;
+				esac
 				;;
 
 			net)
@@ -944,6 +972,10 @@ Set_defaults ()
 		ubuntu)
 			LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Ubuntu Live}"
 			;;
+
+		kubuntu)
+			LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Kubuntu Live}"
+			;;
 	esac
 
 	# Set iso preparer
@@ -977,6 +1009,10 @@ Set_defaults ()
 		ubuntu)
 			LB_ISO_VOLUME="${LB_ISO_VOLUME:-Ubuntu ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}"
 			;;
+
+		kubuntu)
+			LB_ISO_VOLUME="${LB_ISO_VOLUME:-Ubuntu ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}"
+			;;
 	esac
 
 	# Setting memtest option
@@ -984,7 +1020,7 @@ Set_defaults ()
 
 	# Setting win32-loader option
 	case "${LB_MODE}" in
-		progress|ubuntu)
+		progress|ubuntu|kubuntu)
 
 			;;
 
@@ -1046,6 +1082,10 @@ Set_defaults ()
 			LB_USERNAME="${LB_USERNAME:-ubuntu}"
 			;;
 
+		kubuntu)
+			LB_USERNAME="${LB_USERNAME:-ubuntu}"
+			;;
+
 		*)
 			LB_USERNAME="${LB_USERNAME:-user}"
 			;;
diff --git a/functions/exit.sh b/functions/exit.sh
index b6f2e2b..ad17c1e 100755
--- a/functions/exit.sh
+++ b/functions/exit.sh
@@ -35,6 +35,19 @@ Exit ()
 		done
 	fi
 
+	Echo_message "Saving chaches..."
+
+	# We can't really know at which part we're failing,
+	# but let's assume that if there's any binary stage file arround
+	# we are in binary stage.
+
+	if ls .stage/binary* > /dev/null 2>&1
+	then
+		Save_cache cache/packages_binary
+	else
+		Save_cache cache/packages_chroot
+	fi
+
 	return ${VALUE}
 }
 
diff --git a/functions/losetup.sh b/functions/losetup.sh
index df7e2d2..039ff3e 100755
--- a/functions/losetup.sh
+++ b/functions/losetup.sh
@@ -7,6 +7,29 @@
 ## This is free software, and you are welcome to redistribute it
 ## under certain conditions; see COPYING for details.
 
+Lodetach ()
+{
+	DEVICE="${1}"
+	ATTEMPT="${2:-1}"
+
+	if [ "${ATTEMPT}" -gt 3 ]
+	then
+		Echo_error "Failed to detach loop device '${DEVICE}'."
+		exit 1
+	fi
+
+	# Changes to block devices result in uevents which trigger rules which in
+	# turn access the loop device (ex. udisks-part-id, blkid) which can cause
+	# a race condition. We call 'udevadm settle' to help avoid this.
+	${LB_ROOT_COMMAND} udevadm settle
+
+	# Loop back devices aren't the most reliable when it comes to writes.
+	# We sleep and sync for good measure - better than build failure.
+	sync
+	sleep 1
+
+	${LB_ROOT_COMMAND} ${LB_LOSETUP} -d "${DEVICE}" || Lodetach "${DEVICE}" "$(expr ${ATTEMPT} + 1)"
+}
 
 Losetup ()
 {
@@ -14,9 +37,9 @@ Losetup ()
 	FILE="${2}"
 	PARTITION="${3:-1}"
 
-	${LB_ROOT_COMMAND} ${LB_LOSETUP} "${DEVICE}" "${FILE}"
+	${LB_ROOT_COMMAND} ${LB_LOSETUP} --read-only "${DEVICE}" "${FILE}"
 	FDISK_OUT="$(${LB_FDISK} -l -u ${DEVICE} 2>&1)"
-	${LB_ROOT_COMMAND} ${LB_LOSETUP} -d "${DEVICE}"
+	Lodetach "${DEVICE}"
 
 	LOOPDEVICE="$(echo ${DEVICE}p${PARTITION})"
 
diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1
index fa7f4ff..fb40490 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 8fc2509..2415d94 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 d9a7de7..18b4f4c 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 5306c27..24bb924 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 915493d..1f082e3 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 fd2e19a..d0eea30 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 095c7a8..ba2a229 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 e925250..a6666f9 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-hooks.de.1 b/manpages/de/lb_binary_hooks.de.1
similarity index 95%
rename from manpages/de/lb_binary_local-hooks.de.1
rename to manpages/de/lb_binary_hooks.de.1
index deeaebc..8371294 100644
--- a/manpages/de/lb_binary_local-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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 85a3ec7..feb970f 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 16ec7cf..fbe9247 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 98206de..15b431a 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 041a036..e95eb19 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-packagelists.de.1 b/manpages/de/lb_binary_local-packagelists.de.1
index 94a5ca0..f378e11 100644
--- a/manpages/de/lb_binary_local-packagelists.de.1
+++ b/manpages/de/lb_binary_local-packagelists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-packagelists\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_manifest.de.1 b/manpages/de/lb_binary_manifest.de.1
index 9df9e1c..f714d63 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 221591d..42a01ad 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_net.de.1 b/manpages/de/lb_binary_net.de.1
index d844c31..b7f3fb9 100644
--- a/manpages/de/lb_binary_net.de.1
+++ b/manpages/de/lb_binary_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 0aa7a3b..8f6aa79 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 b32c6fd..ec9cea9 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 5048094..0abcba5 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 c4cda60..8df1e7c 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_usb.de.1 b/manpages/de/lb_binary_usb.de.1
index d8a4e53..8305e6b 100644
--- a/manpages/de/lb_binary_usb.de.1
+++ b/manpages/de/lb_binary_usb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_usb\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 ba5b39b..f45c5a0 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 c7ca020..94a31ad 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 d000fe2..e057817 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 106663d..d8444f6 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 d90ebc9..cc73a19 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 104b7d9..147de68 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 7d03a94..8a39b4c 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 1875983..52ba8bf 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 2ad3817..3e48a96 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 d2b7c88..ed72259 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 388e75c..3d31703 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 8c21f44..4d0137e 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 2883269..b1147e5 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 80da083..c5544dd 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 c59f76f..66f41bd 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 d3f40f8..e541673 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 09e61cc..319f085 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_cache.de.1 b/manpages/de/lb_chroot_hooks.de.1
similarity index 79%
copy from manpages/de/lb_chroot_cache.de.1
copy to manpages/de/lb_chroot_hooks.de.1
index 2883269..d694c72 100644
--- a/manpages/de/lb_chroot_cache.de.1
+++ b/manpages/de/lb_chroot_hooks.de.1
@@ -3,22 +3,22 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
-\fBlb chroot_cache\fP \- Complete the chroot stage
+\fBlb chroot_hooks\fP \- Complete the chroot stage
 
 .SH SYNOPSIS
-\fBlb chroot_cache\fP [\fIlive\-build options\fP]
+\fBlb chroot_hooks\fP [\fIlive\-build options\fP]
 
 .SH DESCRIPTION
-\fBlb chroot_cache\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7),
+\fBlb chroot_hooks\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7),
 the Debian Live tool suite.
 .PP
 
 .\" FIXME
 .SH OPTIONS
-\fBlb chroot_cache\fP has no specific options but understands all generic
+\fBlb chroot_hooks\fP has no specific options but understands all generic
 live\-build options. See \fIlive\-build\fP(7) for a complete list of all generic
 live\-build options.
 
diff --git a/manpages/de/lb_chroot_hostname.de.1 b/manpages/de/lb_chroot_hostname.de.1
index 11cd22f..4976c5b 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 3e62202..4ed8579 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 4bec499..2359a77 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 31239fd..3566ad5 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 6aadf5c..15281dc 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-hooks.de.1 b/manpages/de/lb_chroot_local-hooks.de.1
deleted file mode 100644
index b4f06fa..0000000
--- a/manpages/de/lb_chroot_local-hooks.de.1
+++ /dev/null
@@ -1,47 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
-
-.SH NAME
-\fBlb chroot_local\-hooks\fP \- Complete the chroot stage
-
-.SH SYNOPSIS
-\fBlb chroot_local\-hooks\fP [\fIlive\-build options\fP]
-
-.SH DESCRIPTION
-\fBlb chroot_local\-hooks\fP is a low\-level command (plumbing) of
-\fIlive\-build\fP(7), the Debian Live tool suite.
-.PP
-
-.\" FIXME
-.SH OPTIONS
-\fBlb chroot_local\-hooks\fP has no specific options but understands all generic
-live\-build options. See \fIlive\-build\fP(7) for a complete list of all generic
-live\-build options.
-
-.SH FILES
-.\" FIXME
-.IP \fBn/a\fP 4
-
-.SH "SEE ALSO"
-\fIlive\-build\fP(7)
-.PP
-This program is a part of live\-build.
-
-.SH HOMEPAGE
-More information about live\-build and the Debian Live project can be found
-on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
-<\fIhttp://live.debian.net/manual/\fP>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-build package in
-the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by
-writing a mail to the Debian Live mailing list at
-<\fIdebian\-live at lists.debian.org\fP>.
-
-.SH AUTHOR
-live\-build was written by Daniel Baumann <\fIdaniel at debian.org\fP> for
-the Debian project.
diff --git a/manpages/de/lb_chroot_local-includes.de.1 b/manpages/de/lb_chroot_local-includes.de.1
index 6a99e35..6ef4c03 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-packagelists.de.1 b/manpages/de/lb_chroot_local-packagelists.de.1
index 46509c3..8de9859 100644
--- a/manpages/de/lb_chroot_local-packagelists.de.1
+++ b/manpages/de/lb_chroot_local-packagelists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-packagelists\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 a9249b1..da6cfa8 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 ad1ccce..4e744db 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 2f893fb..aa4a61c 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 9d55ff4..320d0c9 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_preseed.de.1 b/manpages/de/lb_chroot_preseed.de.1
index 2fc7268..9e43178 100644
--- a/manpages/de/lb_chroot_preseed.de.1
+++ b/manpages/de/lb_chroot_preseed.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_preseed\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_proc.de.1 b/manpages/de/lb_chroot_proc.de.1
index e85c100..226cebd 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 b3f1dac..a95d48f 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 571c71d..7d92de6 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 01bb775..be21fb9 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 855a0e4..2cd6475 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 97e309f..c6f7967 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 351eb48..39187c2 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 51bb9a8..992e4b7 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 ff2e792..f009af2 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fP \- Create config directory
@@ -34,7 +34,7 @@
 .br
   [\-a|\fB\-\-architectures\fP \fIARCHITECTURE\fP]
 .br
-  [\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|usb\-hdd]
+  [\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|usb\-hdd|virtual\-hdd]
 .br
   [\fB\-\-binary\-filesystem\fP fat16|fat32|ext2]
 .br
@@ -182,7 +182,7 @@
 .br
   [\fB\-\-mirror\-debian\-installer\fP \fIURL\fP]
 .br
-  [\fB\-\-mode\fP debian|emdebian|progress|ubuntu]
+  [\fB\-\-mode\fP debian|emdebian|progress|ubuntu|kubuntu]
 .br
   [\fB\-\-net\-root\-filesystem\fP nfs|cfs]
 .br
@@ -333,10 +333,8 @@ switched to fat32.
 sets boot parameters specific to debian\-installer, if included.
 .IP "\fB\-\-bootappend\-live\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4
 sets boot parameters specific to debian\-live. A complete list of boot
-parameters can be found, for etch, in the manpage of casper, for all other
-distributions in the manpage of live\-boot and live\-config. On the images, a
-list of all parameters (without comments) is included in the
-/parameters.txt.
+parameters can be found in the \fIlive\-boot\fP(7) and \fIlive\-config\fP(7) manual
+pages.
 .IP "\fB\-\-bootloader\fP grub|syslinux|yaboot" 4
 defines which bootloader is beeing used in the generated image. This has
 only an effect if the selected binary image type does allow to choose the
@@ -799,6 +797,10 @@ LB_PARENT_MIRROR_BOOTSTRAP. This feature can be false by specifying the
 .SH "SEE ALSO"
 \fIlive\-build\fP(7)
 .PP
+\fIlive\-boot\fP(7)
+.PP
+\fIlive\-config\fP(7)
+.PP
 This program is a part of live\-build.
 
 .SH HOMEPAGE
diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1
index ff8b700..c0569c1 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 3a12a54..e6e5f36 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 a9759e8..fb050fe 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 f92a5bf..a0d8ffc 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 776a2f5..973a7f4 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 016140a..9093bd8 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_iso.de.1 b/manpages/de/lb_source_iso.de.1
index 0326abf..0c972a9 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_net.de.1 b/manpages/de/lb_source_net.de.1
index ece174b..2e3d03e 100644
--- a/manpages/de/lb_source_net.de.1
+++ b/manpages/de/lb_source_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_net\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_tar.de.1 b/manpages/de/lb_source_tar.de.1
index 65fb123..6dc4b15 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_usb.de.1 b/manpages/de/lb_source_usb.de.1
index 51aa459..a0845b0 100644
--- a/manpages/de/lb_source_usb.de.1
+++ b/manpages/de/lb_source_usb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_usb\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 8d99510..fae68a9 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 6d7f595..ddae919 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 3d81a3f..e5e5019 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 7 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fP \- the Debian Live tool suite
@@ -138,7 +138,7 @@ install queued packages into chroot
 make build interactive
 .IP \fBlb_chroot_linux\-image\fP(1) 4
 manage /etc/kernel\-img.conf
-.IP \fBlb_chroot_local\-hooks\fP(1) 4
+.IP \fBlb_chroot_hooks\fP(1) 4
 execute local hooks in chroot
 .IP \fBlb_chroot_local\-includes\fP(1) 4
 copy local files into chroot
diff --git a/manpages/en/lb.1 b/manpages/en/lb.1
index fc93d4c..f3ef115 100644
--- a/manpages/en/lb.1
+++ b/manpages/en/lb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 0b94ef8..e7f1d6d 100644
--- a/manpages/en/lb_binary.1
+++ b/manpages/en/lb_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 f3e0eda..32152e2 100644
--- a/manpages/en/lb_binary_checksums.1
+++ b/manpages/en/lb_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 546b8a9..5d3c151 100644
--- a/manpages/en/lb_binary_chroot.1
+++ b/manpages/en/lb_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 218bb37..8dd5d05 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 c694e17..5679bdc 100644
--- a/manpages/en/lb_binary_disk.1
+++ b/manpages/en/lb_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 aa5a833..2721abb 100644
--- a/manpages/en/lb_binary_grub.1
+++ b/manpages/en/lb_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 46ed9fd..2b41d3c 100644
--- a/manpages/en/lb_binary_grub2.1
+++ b/manpages/en/lb_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-hooks.1 b/manpages/en/lb_binary_hooks.1
similarity index 94%
rename from manpages/en/lb_binary_local-hooks.1
rename to manpages/en/lb_binary_hooks.1
index da62c05..ac8b14a 100644
--- a/manpages/en/lb_binary_local-hooks.1
+++ b/manpages/en/lb_binary_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 22a7257..c60c607 100644
--- a/manpages/en/lb_binary_includes.1
+++ b/manpages/en/lb_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 b295f70..6170150 100644
--- a/manpages/en/lb_binary_iso.1
+++ b/manpages/en/lb_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 bd26fd2..a223b24 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 96256c2..3d63ba1 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-packagelists.1 b/manpages/en/lb_binary_local-packagelists.1
index 3a307f1..b2aa017 100644
--- a/manpages/en/lb_binary_local-packagelists.1
+++ b/manpages/en/lb_binary_local-packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local-packagelists\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_manifest.1 b/manpages/en/lb_binary_manifest.1
index ae8be77..746cb01 100644
--- a/manpages/en/lb_binary_manifest.1
+++ b/manpages/en/lb_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 257a20e..ea6613f 100644
--- a/manpages/en/lb_binary_memtest.1
+++ b/manpages/en/lb_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_net.1 b/manpages/en/lb_binary_net.1
index a983330..ca06388 100644
--- a/manpages/en/lb_binary_net.1
+++ b/manpages/en/lb_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 8a2ef79..24f4caa 100644
--- a/manpages/en/lb_binary_rootfs.1
+++ b/manpages/en/lb_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 b72e04c..d9a5259 100644
--- a/manpages/en/lb_binary_silo.1
+++ b/manpages/en/lb_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 c583929..2bbecd9 100644
--- a/manpages/en/lb_binary_syslinux.1
+++ b/manpages/en/lb_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 44f81b0..5cb57d2 100644
--- a/manpages/en/lb_binary_tar.1
+++ b/manpages/en/lb_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_usb.1 b/manpages/en/lb_binary_usb.1
index a6cc801..6333763 100644
--- a/manpages/en/lb_binary_usb.1
+++ b/manpages/en/lb_binary_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_usb\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_virtual-hdd.1 b/manpages/en/lb_binary_virtual-hdd.1
index d1ff93f..a5086a6 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 b0e9665..1030f68 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 df2a934..707756d 100644
--- a/manpages/en/lb_binary_yaboot.1
+++ b/manpages/en/lb_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 d3e15bf..920de19 100644
--- a/manpages/en/lb_bootstrap.1
+++ b/manpages/en/lb_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 2b3b6e7..215ca12 100644
--- a/manpages/en/lb_bootstrap_cache.1
+++ b/manpages/en/lb_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 d2cb340..3872912 100644
--- a/manpages/en/lb_bootstrap_cdebootstrap.1
+++ b/manpages/en/lb_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 af98f59..f4cd77e 100644
--- a/manpages/en/lb_bootstrap_copy.1
+++ b/manpages/en/lb_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 28da43f..a831df8 100644
--- a/manpages/en/lb_bootstrap_debootstrap.1
+++ b/manpages/en/lb_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 37f7a46..860504b 100644
--- a/manpages/en/lb_build.1
+++ b/manpages/en/lb_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 304d3c4..ed237d8 100644
--- a/manpages/en/lb_chroot.1
+++ b/manpages/en/lb_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 ca55d24..1f2f0be 100644
--- a/manpages/en/lb_chroot_apt.1
+++ b/manpages/en/lb_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 33e888a..94c7bec 100644
--- a/manpages/en/lb_chroot_archives.1
+++ b/manpages/en/lb_chroot_archives.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 bd9bb01..29a6c33 100644
--- a/manpages/en/lb_chroot_cache.1
+++ b/manpages/en/lb_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 9877f60..ee74045 100644
--- a/manpages/en/lb_chroot_debianchroot.1
+++ b/manpages/en/lb_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 7655633..74753a4 100644
--- a/manpages/en/lb_chroot_devpts.1
+++ b/manpages/en/lb_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 cc78563..be51d0a 100644
--- a/manpages/en/lb_chroot_dpkg.1
+++ b/manpages/en/lb_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 f2cf1b6..ca61b82 100644
--- a/manpages/en/lb_chroot_hacks.1
+++ b/manpages/en/lb_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_cache.1 b/manpages/en/lb_chroot_hooks.1
similarity index 75%
copy from manpages/en/lb_chroot_cache.1
copy to manpages/en/lb_chroot_hooks.1
index bd9bb01..40af47a 100644
--- a/manpages/en/lb_chroot_cache.1
+++ b/manpages/en/lb_chroot_hooks.1
@@ -1,18 +1,18 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
-\fBlb chroot_cache\fR \- Complete the chroot stage
+\fBlb chroot_hooks\fR \- Complete the chroot stage
 
 .SH SYNOPSIS
-\fBlb chroot_cache\fR [\fIlive\-build options\fR]
+\fBlb chroot_hooks\fR [\fIlive\-build options\fR]
 
 .SH DESCRIPTION
-\fBlb chroot_cache\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
+\fBlb chroot_hooks\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
 .PP
 .\" FIXME
 
 .SH OPTIONS
-\fBlb chroot_cache\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
+\fBlb chroot_hooks\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
 
 .SH FILES
 .\" FIXME
diff --git a/manpages/en/lb_chroot_hostname.1 b/manpages/en/lb_chroot_hostname.1
index 843b421..b05e7df 100644
--- a/manpages/en/lb_chroot_hostname.1
+++ b/manpages/en/lb_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 d245faf..8cf49bc 100644
--- a/manpages/en/lb_chroot_hosts.1
+++ b/manpages/en/lb_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 249d2b8..ae6393f 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 4db54ac..1fc49ee 100644
--- a/manpages/en/lb_chroot_interactive.1
+++ b/manpages/en/lb_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 614ff23..6c92c27 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-hooks.1 b/manpages/en/lb_chroot_local-hooks.1
deleted file mode 100644
index 371fd60..0000000
--- a/manpages/en/lb_chroot_local-hooks.1
+++ /dev/null
@@ -1,33 +0,0 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
-
-.SH NAME
-\fBlb chroot_local\-hooks\fR \- Complete the chroot stage
-
-.SH SYNOPSIS
-\fBlb chroot_local\-hooks\fR [\fIlive\-build options\fR]
-
-.SH DESCRIPTION
-\fBlb chroot_local\-hooks\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
-.PP
-.\" FIXME
-
-.SH OPTIONS
-\fBlb chroot_local\-hooks\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
-
-.SH FILES
-.\" FIXME
-.IP "\fBn/a\fR" 4
-
-.SH SEE ALSO
-\fIlive\-build\fR(7)
-.PP
-This program is a part of live\-build.
-
-.SH HOMEPAGE
-More information about live\-build and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
-
-.SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-build package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live at lists.debian.org\fR>.
-
-.SH AUTHOR
-live\-build was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.
diff --git a/manpages/en/lb_chroot_local-includes.1 b/manpages/en/lb_chroot_local-includes.1
index 3c320db..1fc4cf3 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-packagelists.1 b/manpages/en/lb_chroot_local-packagelists.1
index 92b9f9f..56e59a5 100644
--- a/manpages/en/lb_chroot_local-packagelists.1
+++ b/manpages/en/lb_chroot_local-packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-packagelists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-patches.1 b/manpages/en/lb_chroot_local-patches.1
index 11abcb5..8e9938d 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 ab34eb6..c1dd575 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 78f71f0..f1361f9 100644
--- a/manpages/en/lb_chroot_packagelists.1
+++ b/manpages/en/lb_chroot_packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 83a772b..1374b39 100644
--- a/manpages/en/lb_chroot_packages.1
+++ b/manpages/en/lb_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_preseed.1 b/manpages/en/lb_chroot_preseed.1
index 75d8b9d..0108ab5 100644
--- a/manpages/en/lb_chroot_preseed.1
+++ b/manpages/en/lb_chroot_preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_proc.1 b/manpages/en/lb_chroot_proc.1
index cc90617..75bde8c 100644
--- a/manpages/en/lb_chroot_proc.1
+++ b/manpages/en/lb_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 2cdd59e..a661bc3 100644
--- a/manpages/en/lb_chroot_resolv.1
+++ b/manpages/en/lb_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 05b00b0..bc9313d 100644
--- a/manpages/en/lb_chroot_selinuxfs.1
+++ b/manpages/en/lb_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 e93f114..4437301 100644
--- a/manpages/en/lb_chroot_sysfs.1
+++ b/manpages/en/lb_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 fff2863..6d7f84b 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 e1fb76e..933bb05 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 7c5714c..6ce3b57 100644
--- a/manpages/en/lb_chroot_upstart.1
+++ b/manpages/en/lb_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 597cfef..ac27818 100644
--- a/manpages/en/lb_clean.1
+++ b/manpages/en/lb_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 a523ff5..ff19a67 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fR \- Create config directory
@@ -29,7 +29,7 @@
 .br
 	[\-a|\fB\-\-architectures\fR \fIARCHITECTURE\fR]
 .br
-	[\-b|\fB\-\-binary\-images\fR iso|iso\-hybrid|net|tar|usb\-hdd]
+	[\-b|\fB\-\-binary\-images\fR iso|iso\-hybrid|net|tar|usb\-hdd|virtual\-hdd]
 .br
 	[\fB\-\-binary\-filesystem\fR fat16|fat32|ext2]
 .br
@@ -177,7 +177,7 @@
 .br
 	[\fB\-\-mirror\-debian\-installer\fR \fIURL\fR]
 .br
-	[\fB\-\-mode\fR debian|emdebian|progress|ubuntu]
+	[\fB\-\-mode\fR debian|emdebian|progress|ubuntu|kubuntu]
 .br
 	[\fB\-\-net\-root\-filesystem\fR nfs|cfs]
 .br
@@ -280,7 +280,7 @@ defines the filesystem to be used in the image type. This only has an effect if
 .IP "\fB\-\-bootappend\-install\fR \fIPARAMETER\fR|""\fIPARAMETERS\fR""" 4
 sets boot parameters specific to debian\-installer, if included.
 .IP "\fB\-\-bootappend\-live\fR \fIPARAMETER\fR|""\fIPARAMETERS\fR""" 4
-sets boot parameters specific to debian\-live. A complete list of boot parameters can be found, for etch, in the manpage of casper, for all other distributions in the manpage of live\-boot and live\-config. On the images, a list of all parameters (without comments) is included in the /parameters.txt.
+sets boot parameters specific to debian\-live. A complete list of boot parameters can be found in the \fIlive\-boot\fR(7) and \fIlive\-config\fR(7) manual pages.
 .IP "\fB\-\-bootloader\fR grub|syslinux|yaboot" 4
 defines which bootloader is beeing used in the generated image. This has only an effect if the selected binary image type does allow to choose the bootloader. For example, if you build a iso, always syslinux (or more precise, isolinux) is being used. Also note that some combinations of binary images types and bootloaders may be possible but live\-build does not support them yet. \fBlb config\fR will fail to create such a not yet supported configuration and give a explanation about it. For usb\-hdd images on amd64 and i386, the default is syslinux. yaboot is only used on powerpc.
 .IP "\fB\-\-bootstrap\fR cdebootstrap|cdebootstrap-static|debootstrap|copy" 4
@@ -509,6 +509,10 @@ An optional, global configuration file for \fBlb config\fR variables. It is usef
 .SH SEE ALSO
 \fIlive\-build\fR(7)
 .PP
+\fIlive\-boot\fR(7)
+.PP
+\fIlive\-config\fR(7)
+.PP
 This program is a part of live\-build.
 
 .SH HOMEPAGE
diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1
index 0cf986b..ce52fd2 100644
--- a/manpages/en/lb_local.1
+++ b/manpages/en/lb_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 3c012f1..f9317a9 100644
--- a/manpages/en/lb_source.1
+++ b/manpages/en/lb_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 a090095..3f9dcdf 100644
--- a/manpages/en/lb_source_checksums.1
+++ b/manpages/en/lb_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 9e58724..44951bf 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 e7cb147..dd61c2c 100644
--- a/manpages/en/lb_source_debian.1
+++ b/manpages/en/lb_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 8c7104a..c8ba107 100644
--- a/manpages/en/lb_source_disk.1
+++ b/manpages/en/lb_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_iso.1 b/manpages/en/lb_source_iso.1
index a4c7813..f1fa91c 100644
--- a/manpages/en/lb_source_iso.1
+++ b/manpages/en/lb_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_net.1 b/manpages/en/lb_source_net.1
index ab59468..928d58f 100644
--- a/manpages/en/lb_source_net.1
+++ b/manpages/en/lb_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_net\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_tar.1 b/manpages/en/lb_source_tar.1
index db490a5..6fadac7 100644
--- a/manpages/en/lb_source_tar.1
+++ b/manpages/en/lb_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_usb.1 b/manpages/en/lb_source_usb.1
index 38c11c2..9df8ae0 100644
--- a/manpages/en/lb_source_usb.1
+++ b/manpages/en/lb_source_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlb source_usb\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_virtual-hdd.1 b/manpages/en/lb_source_virtual-hdd.1
index d1a9181..6fb4add 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 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 f15df55..28c905b 100644
--- a/manpages/en/lb_testroot.1
+++ b/manpages/en/lb_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-08\-04 3.0~a26 "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 6e01e87..0c5dfea 100644
--- a/manpages/en/live-build.7
+++ b/manpages/en/live-build.7
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 7 2011\-07\-15 3.0~a25 "Debian Live Project"
+.TH LIVE\-BUILD 7 2011\-08\-04 3.0~a26 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fR \- the Debian Live tool suite
@@ -115,7 +115,7 @@ install queued packages into chroot
 make build interactive
 .IP "\fBlb_chroot_linux\-image\fR(1)" 4
 manage /etc/kernel\-img.conf
-.IP "\fBlb_chroot_local\-hooks\fR(1)" 4
+.IP "\fBlb_chroot_hooks\fR(1)" 4
 execute local hooks in chroot
 .IP "\fBlb_chroot_local\-includes\fR(1)" 4
 copy local files into chroot
diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po
index f5552ef..3a8a5ac 100644
--- a/manpages/po/de/lb.1.po
+++ b/manpages/po/de/lb.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -195,8 +190,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -207,17 +202,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -239,8 +233,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -251,17 +245,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -280,22 +273,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -323,22 +316,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -365,22 +358,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -400,22 +393,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -434,29 +427,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -468,29 +461,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -540,29 +533,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -575,29 +568,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -613,29 +606,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -648,29 +641,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po
index 974969a..209fa6b 100644
--- a/manpages/po/de/lb_binary.1.po
+++ b/manpages/po/de/lb_binary.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/lb_binary_checksums.1.po b/manpages/po/de/lb_binary_checksums.1.po
index f562efb..2bd7c02 100644
--- a/manpages/po/de/lb_binary_checksums.1.po
+++ b/manpages/po/de/lb_binary_checksums.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -672,9 +665,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -684,10 +677,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_chroot.1.po b/manpages/po/de/lb_binary_chroot.1.po
index 6fbe0bf..ed43eca 100644
--- a/manpages/po/de/lb_binary_chroot.1.po
+++ b/manpages/po/de/lb_binary_chroot.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_debian-installer.1.po b/manpages/po/de/lb_binary_debian-installer.1.po
index addb00c..390c98d 100644
--- a/manpages/po/de/lb_binary_debian-installer.1.po
+++ b/manpages/po/de/lb_binary_debian-installer.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_disk.1.po b/manpages/po/de/lb_binary_disk.1.po
index e931b18..c757fdd 100644
--- a/manpages/po/de/lb_binary_disk.1.po
+++ b/manpages/po/de/lb_binary_disk.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_grub.1.po b/manpages/po/de/lb_binary_grub.1.po
index cd11240..85d71c4 100644
--- a/manpages/po/de/lb_binary_grub.1.po
+++ b/manpages/po/de/lb_binary_grub.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_grub2.1.po b/manpages/po/de/lb_binary_grub2.1.po
index 3688597..d012a83 100644
--- a/manpages/po/de/lb_binary_grub2.1.po
+++ b/manpages/po/de/lb_binary_grub2.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_local-hooks.1.po b/manpages/po/de/lb_binary_hooks.1.po
similarity index 66%
rename from manpages/po/de/lb_binary_local-hooks.1.po
rename to manpages/po/de/lb_binary_hooks.1.po
index 583ec0b..406e4c8 100644
--- a/manpages/po/de/lb_binary_local-hooks.1.po
+++ b/manpages/po/de/lb_binary_hooks.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
@@ -678,24 +671,24 @@ msgid "B<n/a>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_local-hooks.1:5
+#: en/lb_binary_hooks.1:5
 msgid "B<lb binary_local-hooks> - Complete the binary stage"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_local-hooks.1:8
+#: en/lb_binary_hooks.1:8
 msgid "B<lb binary_local-hooks> [I<live-build options>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_local-hooks.1:11
+#: en/lb_binary_hooks.1:11
 msgid ""
 "B<lb binary_local-hooks> is a low-level command (plumbing) of I<live-build>"
 "(7), the Debian Live tool suite."
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_local-hooks.1:16
+#: en/lb_binary_hooks.1:16
 msgid ""
 "B<lb binary_local-hooks> has no specific options but understands all generic "
 "live-build options. See I<live-build>(7) for a complete list of all generic "
diff --git a/manpages/po/de/lb_binary_includes.1.po b/manpages/po/de/lb_binary_includes.1.po
index 7b71be1..9e205f9 100644
--- a/manpages/po/de/lb_binary_includes.1.po
+++ b/manpages/po/de/lb_binary_includes.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_iso.1.po b/manpages/po/de/lb_binary_iso.1.po
index 06a847d..a03e494 100644
--- a/manpages/po/de/lb_binary_iso.1.po
+++ b/manpages/po/de/lb_binary_iso.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_linux-image.1.po b/manpages/po/de/lb_binary_linux-image.1.po
index 068c4c1..ebfc93e 100644
--- a/manpages/po/de/lb_binary_linux-image.1.po
+++ b/manpages/po/de/lb_binary_linux-image.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_local-includes.1.po b/manpages/po/de/lb_binary_local-includes.1.po
index bdccd55..d28b502 100644
--- a/manpages/po/de/lb_binary_local-includes.1.po
+++ b/manpages/po/de/lb_binary_local-includes.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_local-packagelists.1.po b/manpages/po/de/lb_binary_local-packagelists.1.po
index ccca5ce..6fb8090 100644
--- a/manpages/po/de/lb_binary_local-packagelists.1.po
+++ b/manpages/po/de/lb_binary_local-packagelists.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_manifest.1.po b/manpages/po/de/lb_binary_manifest.1.po
index 1f581da..a0e629b 100644
--- a/manpages/po/de/lb_binary_manifest.1.po
+++ b/manpages/po/de/lb_binary_manifest.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_memtest.1.po b/manpages/po/de/lb_binary_memtest.1.po
index 445d54b..70547b5 100644
--- a/manpages/po/de/lb_binary_memtest.1.po
+++ b/manpages/po/de/lb_binary_memtest.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_net.1.po b/manpages/po/de/lb_binary_net.1.po
index 1842975..7fe9042 100644
--- a/manpages/po/de/lb_binary_net.1.po
+++ b/manpages/po/de/lb_binary_net.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_rootfs.1.po b/manpages/po/de/lb_binary_rootfs.1.po
index 68a6218..1e39198 100644
--- a/manpages/po/de/lb_binary_rootfs.1.po
+++ b/manpages/po/de/lb_binary_rootfs.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_silo.1.po b/manpages/po/de/lb_binary_silo.1.po
index c79ad62..46823f9 100644
--- a/manpages/po/de/lb_binary_silo.1.po
+++ b/manpages/po/de/lb_binary_silo.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_syslinux.1.po b/manpages/po/de/lb_binary_syslinux.1.po
index 95b3d9d..1832a83 100644
--- a/manpages/po/de/lb_binary_syslinux.1.po
+++ b/manpages/po/de/lb_binary_syslinux.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_tar.1.po b/manpages/po/de/lb_binary_tar.1.po
index 4f7f07e..f2bd8b5 100644
--- a/manpages/po/de/lb_binary_tar.1.po
+++ b/manpages/po/de/lb_binary_tar.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_usb.1.po b/manpages/po/de/lb_binary_usb.1.po
index f1e3da8..ad7e756 100644
--- a/manpages/po/de/lb_binary_usb.1.po
+++ b/manpages/po/de/lb_binary_usb.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_virtual-hdd.1.po b/manpages/po/de/lb_binary_virtual-hdd.1.po
index 6901872..a9e2df0 100644
--- a/manpages/po/de/lb_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lb_binary_virtual-hdd.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_win32-loader.1.po b/manpages/po/de/lb_binary_win32-loader.1.po
index a83f240..a6e9478 100644
--- a/manpages/po/de/lb_binary_win32-loader.1.po
+++ b/manpages/po/de/lb_binary_win32-loader.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_binary_yaboot.1.po b/manpages/po/de/lb_binary_yaboot.1.po
index 88d4e5d..113d787 100644
--- a/manpages/po/de/lb_binary_yaboot.1.po
+++ b/manpages/po/de/lb_binary_yaboot.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po
index ccf1ea8..cea107b 100644
--- a/manpages/po/de/lb_bootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/lb_bootstrap_cache.1.po b/manpages/po/de/lb_bootstrap_cache.1.po
index 6a50d27..96065ba 100644
--- a/manpages/po/de/lb_bootstrap_cache.1.po
+++ b/manpages/po/de/lb_bootstrap_cache.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
index 0c4643c..07f1097 100644
--- a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_bootstrap_copy.1.po b/manpages/po/de/lb_bootstrap_copy.1.po
index 836958d..b7f2a58 100644
--- a/manpages/po/de/lb_bootstrap_copy.1.po
+++ b/manpages/po/de/lb_bootstrap_copy.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_bootstrap_debootstrap.1.po b/manpages/po/de/lb_bootstrap_debootstrap.1.po
index b96fedc..38f96b5 100644
--- a/manpages/po/de/lb_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_debootstrap.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po
index f1ee25b..75b68da 100644
--- a/manpages/po/de/lb_build.1.po
+++ b/manpages/po/de/lb_build.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po
index 11d104f..8dbf066 100644
--- a/manpages/po/de/lb_chroot.1.po
+++ b/manpages/po/de/lb_chroot.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/lb_chroot_apt.1.po b/manpages/po/de/lb_chroot_apt.1.po
index c284d93..7d654c4 100644
--- a/manpages/po/de/lb_chroot_apt.1.po
+++ b/manpages/po/de/lb_chroot_apt.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_archives.1.po b/manpages/po/de/lb_chroot_archives.1.po
index 764ae13..22389db 100644
--- a/manpages/po/de/lb_chroot_archives.1.po
+++ b/manpages/po/de/lb_chroot_archives.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_cache.1.po
index 46551ec..8bb9b3f 100644
--- a/manpages/po/de/lb_chroot_cache.1.po
+++ b/manpages/po/de/lb_chroot_cache.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_debianchroot.1.po b/manpages/po/de/lb_chroot_debianchroot.1.po
index 88dc345..8ae2505 100644
--- a/manpages/po/de/lb_chroot_debianchroot.1.po
+++ b/manpages/po/de/lb_chroot_debianchroot.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_devpts.1.po b/manpages/po/de/lb_chroot_devpts.1.po
index 7fa58a7..5e8ed7c 100644
--- a/manpages/po/de/lb_chroot_devpts.1.po
+++ b/manpages/po/de/lb_chroot_devpts.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_dpkg.1.po b/manpages/po/de/lb_chroot_dpkg.1.po
index fe5da78..31be20e 100644
--- a/manpages/po/de/lb_chroot_dpkg.1.po
+++ b/manpages/po/de/lb_chroot_dpkg.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_hacks.1.po b/manpages/po/de/lb_chroot_hacks.1.po
index c8fa16a..6efd7cf 100644
--- a/manpages/po/de/lb_chroot_hacks.1.po
+++ b/manpages/po/de/lb_chroot_hacks.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_hooks.1.po
similarity index 66%
copy from manpages/po/de/lb_chroot_cache.1.po
copy to manpages/po/de/lb_chroot_hooks.1.po
index 46551ec..84337e4 100644
--- a/manpages/po/de/lb_chroot_cache.1.po
+++ b/manpages/po/de/lb_chroot_hooks.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
@@ -678,26 +671,26 @@ msgid "B<n/a>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_chroot_cache.1:5
-msgid "B<lb chroot_cache> - Complete the chroot stage"
+#: en/lb_chroot_hooks.1:5
+msgid "B<lb chroot_hooks> - Complete the chroot stage"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_chroot_cache.1:8
-msgid "B<lb chroot_cache> [I<live-build options>]"
+#: en/lb_chroot_hooks.1:8
+msgid "B<lb chroot_hooks> [I<live-build options>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_chroot_cache.1:11
+#: en/lb_chroot_hooks.1:11
 msgid ""
-"B<lb chroot_cache> is a low-level command (plumbing) of I<live-build>(7), "
+"B<lb chroot_hooks> is a low-level command (plumbing) of I<live-build>(7), "
 "the Debian Live tool suite."
 msgstr ""
 
 #. type: Plain text
-#: en/lb_chroot_cache.1:16
+#: en/lb_chroot_hooks.1:16
 msgid ""
-"B<lb chroot_cache> has no specific options but understands all generic live-"
+"B<lb chroot_hooks> has no specific options but understands all generic live-"
 "build options. See I<live-build>(7) for a complete list of all generic live-"
 "build options."
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_hostname.1.po b/manpages/po/de/lb_chroot_hostname.1.po
index 4bc460d..98b48e8 100644
--- a/manpages/po/de/lb_chroot_hostname.1.po
+++ b/manpages/po/de/lb_chroot_hostname.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_hosts.1.po b/manpages/po/de/lb_chroot_hosts.1.po
index b085e27..f573969 100644
--- a/manpages/po/de/lb_chroot_hosts.1.po
+++ b/manpages/po/de/lb_chroot_hosts.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_install-packages.1.po b/manpages/po/de/lb_chroot_install-packages.1.po
index f10b465..e8a055d 100644
--- a/manpages/po/de/lb_chroot_install-packages.1.po
+++ b/manpages/po/de/lb_chroot_install-packages.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_interactive.1.po b/manpages/po/de/lb_chroot_interactive.1.po
index 9b5fd2e..67932b8 100644
--- a/manpages/po/de/lb_chroot_interactive.1.po
+++ b/manpages/po/de/lb_chroot_interactive.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_linux-image.1.po b/manpages/po/de/lb_chroot_linux-image.1.po
index eb87199..76b3d4c 100644
--- a/manpages/po/de/lb_chroot_linux-image.1.po
+++ b/manpages/po/de/lb_chroot_linux-image.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_local-hooks.1.po b/manpages/po/de/lb_chroot_local-hooks.1.po
deleted file mode 100644
index 3d559bc..0000000
--- a/manpages/po/de/lb_chroot_local-hooks.1.po
+++ /dev/null
@@ -1,703 +0,0 @@
-# German translations for live-build package
-# Copyright (C) 2011 Free Software Foundation, Inc.
-# This file is distributed under the same license as the live-build package.
-# Automatically generated, 2011.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ASCII\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "LIVE-BUILD"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2011-07-15"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a25"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
-#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
-#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
-#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
-#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
-#: en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
-#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
-#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
-#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
-#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
-#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
-#: en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
-#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
-#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
-#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
-#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
-#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
-#: en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
-#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
-#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
-#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
-#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
-#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
-#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
-#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
-#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
-#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
-#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
-#: en/lb_chroot_task-lists.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
-#: en/lb_config.1:252 en/lb_local.1:14 en/lb_source.1:14
-#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
-#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
-#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
-#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
-#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
-#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
-#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
-#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
-#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
-#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
-#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
-#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
-#: en/lb_chroot_task-lists.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
-#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
-#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
-#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
-#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:227
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
-#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
-#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
-#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
-#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
-#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
-#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
-#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
-#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
-#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
-#: en/lb_chroot_task-lists.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
-#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
-#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
-#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
-#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:231
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
-#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
-#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
-#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
-#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
-#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
-#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
-#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
-#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
-#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
-#: en/lb_chroot_task-lists.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
-#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
-#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
-#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
-#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
-#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
-#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
-#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
-#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
-#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
-#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
-#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
-#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
-#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
-#: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
-#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
-#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
-#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:237
-msgid "This program is a part of live-build."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
-#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
-#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
-#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
-#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
-#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
-#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
-#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
-#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
-#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
-#: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
-#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
-#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
-#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:238
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
-#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
-#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
-#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
-#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
-#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
-#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
-#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
-#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
-#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
-#: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
-#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
-#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
-#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:240
-msgid ""
-"More information about live-build and the Debian Live project can be found "
-"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
-#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
-#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
-#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
-#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
-#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
-#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
-#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
-#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
-#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
-#: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
-#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
-#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
-#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:241
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
-#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
-#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
-#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
-#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
-#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
-#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
-#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
-#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
-#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
-#: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
-#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
-#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
-#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:243
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-build package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live at lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
-#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
-#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
-#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
-#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
-#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
-#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
-#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
-#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
-#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
-#: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
-#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
-#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
-#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:244
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
-#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
-#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
-#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
-#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
-#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
-#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
-#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
-#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
-#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
-#: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
-#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
-#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
-#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:245
-msgid ""
-"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#.  FIXME
-#. type: IP
-#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
-#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
-#: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
-#: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
-#: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
-#: en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
-#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
-#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
-#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
-#: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
-#: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
-#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
-#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
-#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
-#: en/lb_chroot_task-lists.1:19 en/lb_chroot_upstart.1:19
-#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
-#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
-#: en/lb_source_virtual-hdd.1:19
-#, no-wrap
-msgid "B<n/a>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_local-hooks.1:5
-msgid "B<lb chroot_local-hooks> - Complete the chroot stage"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_local-hooks.1:8
-msgid "B<lb chroot_local-hooks> [I<live-build options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_local-hooks.1:11
-msgid ""
-"B<lb chroot_local-hooks> is a low-level command (plumbing) of I<live-build>"
-"(7), the Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_local-hooks.1:16
-msgid ""
-"B<lb chroot_local-hooks> has no specific options but understands all generic "
-"live-build options. See I<live-build>(7) for a complete list of all generic "
-"live-build options."
-msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-includes.1.po b/manpages/po/de/lb_chroot_local-includes.1.po
index d36b49c..7f714f7 100644
--- a/manpages/po/de/lb_chroot_local-includes.1.po
+++ b/manpages/po/de/lb_chroot_local-includes.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_local-packagelists.1.po b/manpages/po/de/lb_chroot_local-packagelists.1.po
index 81aec44..8200715 100644
--- a/manpages/po/de/lb_chroot_local-packagelists.1.po
+++ b/manpages/po/de/lb_chroot_local-packagelists.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_local-patches.1.po b/manpages/po/de/lb_chroot_local-patches.1.po
index 121805d..475adae 100644
--- a/manpages/po/de/lb_chroot_local-patches.1.po
+++ b/manpages/po/de/lb_chroot_local-patches.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_local-preseed.1.po b/manpages/po/de/lb_chroot_local-preseed.1.po
index b37380e..808e153 100644
--- a/manpages/po/de/lb_chroot_local-preseed.1.po
+++ b/manpages/po/de/lb_chroot_local-preseed.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_packagelists.1.po b/manpages/po/de/lb_chroot_packagelists.1.po
index f5b200e..4aaa9bf 100644
--- a/manpages/po/de/lb_chroot_packagelists.1.po
+++ b/manpages/po/de/lb_chroot_packagelists.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_packages.1.po b/manpages/po/de/lb_chroot_packages.1.po
index 7617092..d3e1088 100644
--- a/manpages/po/de/lb_chroot_packages.1.po
+++ b/manpages/po/de/lb_chroot_packages.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_preseed.1.po b/manpages/po/de/lb_chroot_preseed.1.po
index d87b223..3e41ba1 100644
--- a/manpages/po/de/lb_chroot_preseed.1.po
+++ b/manpages/po/de/lb_chroot_preseed.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_proc.1.po b/manpages/po/de/lb_chroot_proc.1.po
index eb9ad13..1a9e5d5 100644
--- a/manpages/po/de/lb_chroot_proc.1.po
+++ b/manpages/po/de/lb_chroot_proc.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_resolv.1.po b/manpages/po/de/lb_chroot_resolv.1.po
index 30fd656..51c6cb0 100644
--- a/manpages/po/de/lb_chroot_resolv.1.po
+++ b/manpages/po/de/lb_chroot_resolv.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_selinuxfs.1.po b/manpages/po/de/lb_chroot_selinuxfs.1.po
index fb96b96..234e0a9 100644
--- a/manpages/po/de/lb_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lb_chroot_selinuxfs.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_sysfs.1.po b/manpages/po/de/lb_chroot_sysfs.1.po
index 266ec79..4442f83 100644
--- a/manpages/po/de/lb_chroot_sysfs.1.po
+++ b/manpages/po/de/lb_chroot_sysfs.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_sysv-rc.1.po b/manpages/po/de/lb_chroot_sysv-rc.1.po
index 549d465..faca968 100644
--- a/manpages/po/de/lb_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lb_chroot_sysv-rc.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_task-lists.1.po b/manpages/po/de/lb_chroot_task-lists.1.po
index 5e139ea..14179a2 100644
--- a/manpages/po/de/lb_chroot_task-lists.1.po
+++ b/manpages/po/de/lb_chroot_task-lists.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_chroot_upstart.1.po b/manpages/po/de/lb_chroot_upstart.1.po
index 86bc4b9..fea827e 100644
--- a/manpages/po/de/lb_chroot_upstart.1.po
+++ b/manpages/po/de/lb_chroot_upstart.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po
index c1e9624..a59aa37 100644
--- a/manpages/po/de/lb_clean.1.po
+++ b/manpages/po/de/lb_clean.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index b45a092..98a3961 100644
--- a/manpages/po/de/lb_config.1.po
+++ b/manpages/po/de/lb_config.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -711,7 +704,7 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:33
-msgid "  [-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd]"
+msgid "  [-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd|virtual-hdd]"
 msgstr ""
 
 #. type: Plain text
@@ -1082,7 +1075,7 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:181
-msgid "  [B<--mode> debian|emdebian|progress|ubuntu]"
+msgid "  [B<--mode> debian|emdebian|progress|ubuntu|kubuntu]"
 msgstr ""
 
 #. type: Plain text
@@ -1474,9 +1467,8 @@ msgstr ""
 #: en/lb_config.1:284
 msgid ""
 "sets boot parameters specific to debian-live. A complete list of boot "
-"parameters can be found, for etch, in the manpage of casper, for all other "
-"distributions in the manpage of live-boot and live-config. On the images, a "
-"list of all parameters (without comments) is included in the /parameters.txt."
+"parameters can be found in the I<live-boot>(7) and I<live-config>(7) manual "
+"pages."
 msgstr ""
 
 #. type: IP
@@ -2970,3 +2962,13 @@ msgid ""
 "LB_PARENT_MIRROR_BOOTSTRAP. This feature can be false by specifying the B<--"
 "ignore-system-defaults> option."
 msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:513 en/live-build.7:233
+msgid "I<live-boot>(7)"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:515 en/live-build.7:235
+msgid "I<live-config>(7)"
+msgstr ""
diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po
index 6151a4b..96418d9 100644
--- a/manpages/po/de/lb_local.1.po
+++ b/manpages/po/de/lb_local.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po
index cabf4f0..7b1769d 100644
--- a/manpages/po/de/lb_source.1.po
+++ b/manpages/po/de/lb_source.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/lb_source_checksums.1.po b/manpages/po/de/lb_source_checksums.1.po
index 951bed2..e9b4d2f 100644
--- a/manpages/po/de/lb_source_checksums.1.po
+++ b/manpages/po/de/lb_source_checksums.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_source_debian-live.1.po b/manpages/po/de/lb_source_debian-live.1.po
index 9debf79..2cc0a38 100644
--- a/manpages/po/de/lb_source_debian-live.1.po
+++ b/manpages/po/de/lb_source_debian-live.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_source_debian.1.po b/manpages/po/de/lb_source_debian.1.po
index 17b9e91..99884ac 100644
--- a/manpages/po/de/lb_source_debian.1.po
+++ b/manpages/po/de/lb_source_debian.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_source_disk.1.po b/manpages/po/de/lb_source_disk.1.po
index 269e936..a71399c 100644
--- a/manpages/po/de/lb_source_disk.1.po
+++ b/manpages/po/de/lb_source_disk.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_source_iso.1.po b/manpages/po/de/lb_source_iso.1.po
index 8b05801..8aaf1df 100644
--- a/manpages/po/de/lb_source_iso.1.po
+++ b/manpages/po/de/lb_source_iso.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_source_net.1.po b/manpages/po/de/lb_source_net.1.po
index 268caff..fa9b293 100644
--- a/manpages/po/de/lb_source_net.1.po
+++ b/manpages/po/de/lb_source_net.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_tar.1.po
index 9797e6b..f068a65 100644
--- a/manpages/po/de/lb_source_tar.1.po
+++ b/manpages/po/de/lb_source_tar.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_source_usb.1.po b/manpages/po/de/lb_source_usb.1.po
index 75eb229..4ca0e7f 100644
--- a/manpages/po/de/lb_source_usb.1.po
+++ b/manpages/po/de/lb_source_usb.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_source_virtual-hdd.1.po b/manpages/po/de/lb_source_virtual-hdd.1.po
index 61df042..0f46cd8 100644
--- a/manpages/po/de/lb_source_virtual-hdd.1.po
+++ b/manpages/po/de/lb_source_virtual-hdd.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po
index 493a082..a571c82 100644
--- a/manpages/po/de/lb_testroot.1.po
+++ b/manpages/po/de/lb_testroot.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po
index d216347..0ba0593 100644
--- a/manpages/po/de/live-build.7.po
+++ b/manpages/po/de/live-build.7.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
-"PO-Revision-Date: 2011-06-15 22:05+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+0300\n"
+"PO-Revision-Date: 2011-07-19 16:46+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,29 +356,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -432,29 +425,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -469,29 +462,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -504,29 +497,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -542,29 +535,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -577,29 +570,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -634,6 +627,16 @@ msgid "B<--verbose>"
 msgstr ""
 
 #. type: Plain text
+#: en/lb_config.1:513 en/live-build.7:233
+msgid "I<live-boot>(7)"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:515 en/live-build.7:235
+msgid "I<live-config>(7)"
+msgstr ""
+
+#. type: Plain text
 #: en/live-build.7:5
 msgid "B<live-build> - the Debian Live tool suite"
 msgstr ""
@@ -1140,7 +1143,7 @@ msgstr ""
 #. type: IP
 #: en/live-build.7:118
 #, no-wrap
-msgid "B<lb_chroot_local-hooks>(1)"
+msgid "B<lb_chroot_hooks>(1)"
 msgstr ""
 
 #. type: Plain text
@@ -1724,13 +1727,3 @@ msgstr ""
 #, no-wrap
 msgid "B</etc/live/build.d/>"
 msgstr ""
-
-#. type: Plain text
-#: en/live-build.7:233
-msgid "I<live-boot>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-build.7:235
-msgid "I<live-config>(7)"
-msgstr ""
diff --git a/manpages/po4a.cfg b/manpages/po4a.cfg
index fade2fd..1a7a781 100644
--- a/manpages/po4a.cfg
+++ b/manpages/po4a.cfg
@@ -8,10 +8,10 @@
 [type: man] en/lb_binary_disk.1 $lang:$lang/lb_binary_disk.$lang.1
 [type: man] en/lb_binary_grub.1 $lang:$lang/lb_binary_grub.$lang.1
 [type: man] en/lb_binary_grub2.1 $lang:$lang/lb_binary_grub2.$lang.1
+[type: man] en/lb_binary_hooks.1 $lang:$lang/lb_binary_hooks.$lang.1
 [type: man] en/lb_binary_includes.1 $lang:$lang/lb_binary_includes.$lang.1
 [type: man] en/lb_binary_iso.1 $lang:$lang/lb_binary_iso.$lang.1
 [type: man] en/lb_binary_linux-image.1 $lang:$lang/lb_binary_linux-image.$lang.1
-[type: man] en/lb_binary_local-hooks.1 $lang:$lang/lb_binary_local-hooks.$lang.1
 [type: man] en/lb_binary_local-includes.1 $lang:$lang/lb_binary_local-includes.$lang.1
 [type: man] en/lb_binary_local-packagelists.1 $lang:$lang/lb_binary_local-packagelists.$lang.1
 [type: man] en/lb_binary_manifest.1 $lang:$lang/lb_binary_manifest.$lang.1
@@ -39,12 +39,12 @@
 [type: man] en/lb_chroot_devpts.1 $lang:$lang/lb_chroot_devpts.$lang.1
 [type: man] en/lb_chroot_dpkg.1 $lang:$lang/lb_chroot_dpkg.$lang.1
 [type: man] en/lb_chroot_hacks.1 $lang:$lang/lb_chroot_hacks.$lang.1
+[type: man] en/lb_chroot_hooks.1 $lang:$lang/lb_chroot_hooks.$lang.1
 [type: man] en/lb_chroot_hostname.1 $lang:$lang/lb_chroot_hostname.$lang.1
 [type: man] en/lb_chroot_hosts.1 $lang:$lang/lb_chroot_hosts.$lang.1
 [type: man] en/lb_chroot_install-packages.1 $lang:$lang/lb_chroot_install-packages.$lang.1
 [type: man] en/lb_chroot_interactive.1 $lang:$lang/lb_chroot_interactive.$lang.1
 [type: man] en/lb_chroot_linux-image.1 $lang:$lang/lb_chroot_linux-image.$lang.1
-[type: man] en/lb_chroot_local-hooks.1 $lang:$lang/lb_chroot_local-hooks.$lang.1
 [type: man] en/lb_chroot_local-includes.1 $lang:$lang/lb_chroot_local-includes.$lang.1
 [type: man] en/lb_chroot_local-packagelists.1 $lang:$lang/lb_chroot_local-packagelists.$lang.1
 [type: man] en/lb_chroot_local-patches.1 $lang:$lang/lb_chroot_local-patches.$lang.1
diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot
index 680bd06..bdb4c23 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -195,8 +190,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -207,17 +202,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -239,8 +233,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -251,17 +245,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -280,22 +273,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -323,22 +316,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -365,22 +358,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -400,22 +393,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -434,29 +427,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -468,29 +461,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -540,29 +533,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -575,29 +568,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -613,29 +606,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -648,29 +641,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot
index d2cc023..5894995 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/lb_binary_checksums.1.pot b/manpages/pot/lb_binary_checksums.1.pot
index a0ac2cd..bb912e0 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -672,9 +665,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -684,10 +677,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_chroot.1.pot b/manpages/pot/lb_binary_chroot.1.pot
index 8019812..3394c6f 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_debian-installer.1.pot b/manpages/pot/lb_binary_debian-installer.1.pot
index 3ce2bce..b952d86 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_disk.1.pot b/manpages/pot/lb_binary_disk.1.pot
index c079f05..50464b8 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_grub.1.pot b/manpages/pot/lb_binary_grub.1.pot
index 7e8893b..b94e553 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_binary_grub2.1.pot
index f1c2e38..54e5aac 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_local-hooks.1.pot b/manpages/pot/lb_binary_hooks.1.pot
similarity index 66%
rename from manpages/pot/lb_binary_local-hooks.1.pot
rename to manpages/pot/lb_binary_hooks.1.pot
index f0eef97..11f3446 100644
--- a/manpages/pot/lb_binary_local-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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
@@ -678,24 +671,24 @@ msgid "B<n/a>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_local-hooks.1:5
+#: en/lb_binary_hooks.1:5
 msgid "B<lb binary_local-hooks> - Complete the binary stage"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_local-hooks.1:8
+#: en/lb_binary_hooks.1:8
 msgid "B<lb binary_local-hooks> [I<live-build options>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_local-hooks.1:11
+#: en/lb_binary_hooks.1:11
 msgid ""
 "B<lb binary_local-hooks> is a low-level command (plumbing) of I<live-build>"
 "(7), the Debian Live tool suite."
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_local-hooks.1:16
+#: en/lb_binary_hooks.1:16
 msgid ""
 "B<lb binary_local-hooks> has no specific options but understands all generic "
 "live-build options. See I<live-build>(7) for a complete list of all generic "
diff --git a/manpages/pot/lb_binary_includes.1.pot b/manpages/pot/lb_binary_includes.1.pot
index d021897..ca9041d 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_iso.1.pot b/manpages/pot/lb_binary_iso.1.pot
index de22c1a..5881882 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_linux-image.1.pot b/manpages/pot/lb_binary_linux-image.1.pot
index fc2dfa5..9221978 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_local-includes.1.pot b/manpages/pot/lb_binary_local-includes.1.pot
index 7f07b1a..9bac211 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_local-packagelists.1.pot b/manpages/pot/lb_binary_local-packagelists.1.pot
index 52fa417..f0981dd 100644
--- a/manpages/pot/lb_binary_local-packagelists.1.pot
+++ b/manpages/pot/lb_binary_local-packagelists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_manifest.1.pot b/manpages/pot/lb_binary_manifest.1.pot
index 6b9a78b..ea265c2 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_memtest.1.pot b/manpages/pot/lb_binary_memtest.1.pot
index cfca6ad..10eb7e5 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_net.1.pot b/manpages/pot/lb_binary_net.1.pot
index 6f0ee72..505c847 100644
--- a/manpages/pot/lb_binary_net.1.pot
+++ b/manpages/pot/lb_binary_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_rootfs.1.pot b/manpages/pot/lb_binary_rootfs.1.pot
index 4289e24..4f1b3bc 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_silo.1.pot b/manpages/pot/lb_binary_silo.1.pot
index 466844b..908ab50 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_syslinux.1.pot b/manpages/pot/lb_binary_syslinux.1.pot
index a895afd..aca51a2 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_tar.1.pot b/manpages/pot/lb_binary_tar.1.pot
index 479fa21..7222545 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_usb.1.pot b/manpages/pot/lb_binary_usb.1.pot
index 5e1e4e3..2f3ebdd 100644
--- a/manpages/pot/lb_binary_usb.1.pot
+++ b/manpages/pot/lb_binary_usb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_virtual-hdd.1.pot b/manpages/pot/lb_binary_virtual-hdd.1.pot
index b46abfd..7d5ed93 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_win32-loader.1.pot b/manpages/pot/lb_binary_win32-loader.1.pot
index 0f493dd..b1f5add 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_yaboot.1.pot b/manpages/pot/lb_binary_yaboot.1.pot
index 30ba045..c3745b3 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot
index 80fdffc..11b5e2b 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/lb_bootstrap_cache.1.pot b/manpages/pot/lb_bootstrap_cache.1.pot
index 4194776..b198b7c 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
index a3b806f..c58eebd 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_bootstrap_copy.1.pot b/manpages/pot/lb_bootstrap_copy.1.pot
index 7fd4963..c20dcfb 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_bootstrap_debootstrap.1.pot b/manpages/pot/lb_bootstrap_debootstrap.1.pot
index d18eb93..108007c 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot
index 8a7566a..2750955 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot
index 36374c7..485d51e 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/lb_chroot_apt.1.pot b/manpages/pot/lb_chroot_apt.1.pot
index 2b0e25b..3fb72b7 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_archives.1.pot b/manpages/pot/lb_chroot_archives.1.pot
index 639d048..d09c322 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_cache.1.pot b/manpages/pot/lb_chroot_cache.1.pot
index f2a53e6..1a57d7b 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_debianchroot.1.pot b/manpages/pot/lb_chroot_debianchroot.1.pot
index 0a06e77..399e360 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_devpts.1.pot b/manpages/pot/lb_chroot_devpts.1.pot
index 4799dcd..fed1f2b 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_dpkg.1.pot b/manpages/pot/lb_chroot_dpkg.1.pot
index 4aa2a16..01446a3 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_hacks.1.pot b/manpages/pot/lb_chroot_hacks.1.pot
index 2a3025e..9f084be 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_chroot_hooks.1.pot
similarity index 66%
copy from manpages/pot/lb_binary_grub2.1.pot
copy to manpages/pot/lb_chroot_hooks.1.pot
index f1c2e38..342f52b 100644
--- a/manpages/pot/lb_binary_grub2.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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
@@ -678,26 +671,26 @@ msgid "B<n/a>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_grub2.1:5
-msgid "B<lb binary_grub2> - Complete the binary stage"
+#: en/lb_chroot_hooks.1:5
+msgid "B<lb chroot_hooks> - Complete the chroot stage"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_grub2.1:8
-msgid "B<lb binary_grub2> [I<live-build options>]"
+#: en/lb_chroot_hooks.1:8
+msgid "B<lb chroot_hooks> [I<live-build options>]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_grub2.1:11
+#: en/lb_chroot_hooks.1:11
 msgid ""
-"B<lb binary_grub2> is a low-level command (plumbing) of I<live-build>(7), "
+"B<lb chroot_hooks> is a low-level command (plumbing) of I<live-build>(7), "
 "the Debian Live tool suite."
 msgstr ""
 
 #. type: Plain text
-#: en/lb_binary_grub2.1:16
+#: en/lb_chroot_hooks.1:16
 msgid ""
-"B<lb binary_grub2> has no specific options but understands all generic live-"
+"B<lb chroot_hooks> has no specific options but understands all generic live-"
 "build options. See I<live-build>(7) for a complete list of all generic live-"
 "build options."
 msgstr ""
diff --git a/manpages/pot/lb_chroot_hostname.1.pot b/manpages/pot/lb_chroot_hostname.1.pot
index dd16ab5..41a2edc 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_hosts.1.pot b/manpages/pot/lb_chroot_hosts.1.pot
index c842125..51eccce 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_install-packages.1.pot b/manpages/pot/lb_chroot_install-packages.1.pot
index bb84d2d..6d74f8e 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_interactive.1.pot b/manpages/pot/lb_chroot_interactive.1.pot
index 7edc828..c826f1c 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_linux-image.1.pot b/manpages/pot/lb_chroot_linux-image.1.pot
index 8dfa7cf..17ba960 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_local-hooks.1.pot b/manpages/pot/lb_chroot_local-hooks.1.pot
deleted file mode 100644
index 292189a..0000000
--- a/manpages/pot/lb_chroot_local-hooks.1.pot
+++ /dev/null
@@ -1,703 +0,0 @@
-# SOME DESCRIPTIVE TITLE
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# This file is distributed under the same license as the live-build package.
-# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+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"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "LIVE-BUILD"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2011-07-15"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a25"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
-#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
-#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
-#: en/lb_binary_usb.1:1 en/lb_binary_virtual-hdd.1:1
-#: en/lb_binary_win32-loader.1:1 en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1
-#: en/lb_bootstrap_cache.1:1 en/lb_bootstrap_cdebootstrap.1:1
-#: en/lb_bootstrap_copy.1:1 en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1
-#: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
-#: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
-#: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
-#: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
-#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "Debian Live Project"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
-#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
-#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
-#: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
-#: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
-#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
-#: en/lb_binary_usb.1:3 en/lb_binary_virtual-hdd.1:3
-#: en/lb_binary_win32-loader.1:3 en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3
-#: en/lb_bootstrap_cache.1:3 en/lb_bootstrap_cdebootstrap.1:3
-#: en/lb_bootstrap_copy.1:3 en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3
-#: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
-#: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
-#: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
-#: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
-#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
-#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
-#: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
-#, no-wrap
-msgid "NAME"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
-#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
-#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
-#: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
-#: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
-#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
-#: en/lb_binary_usb.1:6 en/lb_binary_virtual-hdd.1:6
-#: en/lb_binary_win32-loader.1:6 en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6
-#: en/lb_bootstrap_cache.1:6 en/lb_bootstrap_cdebootstrap.1:6
-#: en/lb_bootstrap_copy.1:6 en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6
-#: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
-#: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
-#: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
-#: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
-#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
-#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
-#: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
-#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
-#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
-#: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
-#: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
-#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
-#: en/lb_binary_usb.1:9 en/lb_binary_virtual-hdd.1:9
-#: en/lb_binary_win32-loader.1:9 en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9
-#: en/lb_bootstrap_cache.1:9 en/lb_bootstrap_cdebootstrap.1:9
-#: en/lb_bootstrap_copy.1:9 en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
-#: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
-#: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
-#: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
-#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
-#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
-#: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
-#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
-#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
-#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
-#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
-#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
-#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
-#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
-#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
-#: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
-#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
-#: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
-#: en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
-#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
-#: en/lb_chroot_task-lists.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
-#: en/lb_config.1:252 en/lb_local.1:14 en/lb_source.1:14
-#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
-#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_usb.1:14
-#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
-#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
-#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
-#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
-#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
-#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
-#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
-#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
-#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
-#: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
-#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
-#: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
-#: en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
-#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
-#: en/lb_chroot_task-lists.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
-#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
-#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
-#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_usb.1:17
-#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:227
-#, no-wrap
-msgid "FILES"
-msgstr ""
-
-#. type: SH
-#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
-#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
-#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
-#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
-#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
-#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
-#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
-#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
-#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
-#: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
-#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
-#: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
-#: en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
-#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
-#: en/lb_chroot_task-lists.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
-#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
-#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
-#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_usb.1:21
-#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:231
-#, no-wrap
-msgid "SEE ALSO"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
-#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
-#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
-#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
-#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
-#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
-#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
-#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
-#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
-#: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
-#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
-#: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
-#: en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
-#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
-#: en/lb_chroot_task-lists.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
-#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
-#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
-#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_usb.1:23
-#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
-msgid "I<live-build>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
-#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
-#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
-#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
-#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
-#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
-#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
-#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
-#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
-#: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
-#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
-#: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
-#: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
-#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
-#: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
-#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
-#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
-#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:237
-msgid "This program is a part of live-build."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
-#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
-#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
-#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
-#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
-#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
-#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
-#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
-#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
-#: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
-#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
-#: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
-#: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
-#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
-#: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
-#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
-#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
-#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:238
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
-#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
-#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
-#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
-#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
-#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
-#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
-#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
-#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
-#: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
-#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
-#: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
-#: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
-#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
-#: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
-#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
-#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
-#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:240
-msgid ""
-"More information about live-build and the Debian Live project can be found "
-"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
-"E<lt>I<http://live.debian.net/manual/>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
-#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
-#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
-#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
-#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
-#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
-#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
-#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
-#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
-#: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
-#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
-#: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
-#: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
-#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
-#: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
-#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
-#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
-#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:241
-#, no-wrap
-msgid "BUGS"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
-#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
-#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
-#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
-#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
-#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
-#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
-#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
-#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
-#: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
-#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
-#: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
-#: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
-#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
-#: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
-#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
-#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
-#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:243
-msgid ""
-"Bugs can be reported by submitting a bugreport for the live-build package in "
-"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
-"writing a mail to the Debian Live mailing list at E<lt>I<debian-live at lists."
-"debian.org>E<gt>."
-msgstr ""
-
-#. type: SH
-#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
-#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
-#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
-#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
-#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
-#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
-#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
-#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
-#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
-#: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
-#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
-#: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
-#: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
-#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
-#: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
-#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
-#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
-#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:244
-#, no-wrap
-msgid "AUTHOR"
-msgstr ""
-
-#. type: Plain text
-#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
-#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
-#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
-#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
-#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
-#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
-#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
-#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
-#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
-#: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
-#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
-#: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
-#: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
-#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
-#: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
-#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
-#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
-#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:245
-msgid ""
-"live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-
-#.  FIXME
-#. type: IP
-#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
-#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
-#: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
-#: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
-#: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
-#: en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
-#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
-#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
-#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
-#: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
-#: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
-#: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
-#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
-#: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
-#: en/lb_chroot_resolv.1:19 en/lb_chroot_selinuxfs.1:19
-#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
-#: en/lb_chroot_task-lists.1:19 en/lb_chroot_upstart.1:19
-#: en/lb_source_checksums.1:19 en/lb_source_debian-live.1:19
-#: en/lb_source_debian.1:19 en/lb_source_disk.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_usb.1:19
-#: en/lb_source_virtual-hdd.1:19
-#, no-wrap
-msgid "B<n/a>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_local-hooks.1:5
-msgid "B<lb chroot_local-hooks> - Complete the chroot stage"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_local-hooks.1:8
-msgid "B<lb chroot_local-hooks> [I<live-build options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_local-hooks.1:11
-msgid ""
-"B<lb chroot_local-hooks> is a low-level command (plumbing) of I<live-build>"
-"(7), the Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_local-hooks.1:16
-msgid ""
-"B<lb chroot_local-hooks> has no specific options but understands all generic "
-"live-build options. See I<live-build>(7) for a complete list of all generic "
-"live-build options."
-msgstr ""
diff --git a/manpages/pot/lb_chroot_local-includes.1.pot b/manpages/pot/lb_chroot_local-includes.1.pot
index d2b7487..cfd65e1 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_local-packagelists.1.pot b/manpages/pot/lb_chroot_local-packagelists.1.pot
index 67678e7..eb1cb50 100644
--- a/manpages/pot/lb_chroot_local-packagelists.1.pot
+++ b/manpages/pot/lb_chroot_local-packagelists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_local-patches.1.pot b/manpages/pot/lb_chroot_local-patches.1.pot
index 878e55e..8fac90b 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_local-preseed.1.pot b/manpages/pot/lb_chroot_local-preseed.1.pot
index e990cc4..837299a 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_packagelists.1.pot b/manpages/pot/lb_chroot_packagelists.1.pot
index a418e7a..5c68e6e 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_packages.1.pot b/manpages/pot/lb_chroot_packages.1.pot
index 26d61f2..d48b198 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_preseed.1.pot b/manpages/pot/lb_chroot_preseed.1.pot
index 66d72eb..fca5dd2 100644
--- a/manpages/pot/lb_chroot_preseed.1.pot
+++ b/manpages/pot/lb_chroot_preseed.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_proc.1.pot b/manpages/pot/lb_chroot_proc.1.pot
index cb47719..0a8e103 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_resolv.1.pot b/manpages/pot/lb_chroot_resolv.1.pot
index c94e8a4..69e796d 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_selinuxfs.1.pot b/manpages/pot/lb_chroot_selinuxfs.1.pot
index a5b35c8..1097777 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_sysfs.1.pot b/manpages/pot/lb_chroot_sysfs.1.pot
index b2e63e7..8628be8 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_sysv-rc.1.pot b/manpages/pot/lb_chroot_sysv-rc.1.pot
index f4ad852..38f6c5a 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_task-lists.1.pot b/manpages/pot/lb_chroot_task-lists.1.pot
index fb9ca05..9d8d351 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_chroot_upstart.1.pot b/manpages/pot/lb_chroot_upstart.1.pot
index c3f2770..c08a15a 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_clean.1.pot b/manpages/pot/lb_clean.1.pot
index 9a6b894..64780ea 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index 6f8763d..89e1ad9 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -711,7 +704,7 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:33
-msgid "  [-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd]"
+msgid "  [-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd|virtual-hdd]"
 msgstr ""
 
 #. type: Plain text
@@ -1082,7 +1075,7 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:181
-msgid "  [B<--mode> debian|emdebian|progress|ubuntu]"
+msgid "  [B<--mode> debian|emdebian|progress|ubuntu|kubuntu]"
 msgstr ""
 
 #. type: Plain text
@@ -1474,9 +1467,8 @@ msgstr ""
 #: en/lb_config.1:284
 msgid ""
 "sets boot parameters specific to debian-live. A complete list of boot "
-"parameters can be found, for etch, in the manpage of casper, for all other "
-"distributions in the manpage of live-boot and live-config. On the images, a "
-"list of all parameters (without comments) is included in the /parameters.txt."
+"parameters can be found in the I<live-boot>(7) and I<live-config>(7) manual "
+"pages."
 msgstr ""
 
 #. type: IP
@@ -2970,3 +2962,13 @@ msgid ""
 "LB_PARENT_MIRROR_BOOTSTRAP. This feature can be false by specifying the B<--"
 "ignore-system-defaults> option."
 msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:513 en/live-build.7:233
+msgid "I<live-boot>(7)"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:515 en/live-build.7:235
+msgid "I<live-config>(7)"
+msgstr ""
diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot
index 53a1d5c..c7a05b2 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/lb_source.1.pot b/manpages/pot/lb_source.1.pot
index bcab7bb..1b85bb0 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/lb_source_checksums.1.pot b/manpages/pot/lb_source_checksums.1.pot
index bfaab38..64e3091 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_source_debian-live.1.pot b/manpages/pot/lb_source_debian-live.1.pot
index dfdcc3a..c225c4c 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_source_debian.1.pot b/manpages/pot/lb_source_debian.1.pot
index a6e2d53..2815c06 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_source_disk.1.pot b/manpages/pot/lb_source_disk.1.pot
index 9b634b7..ea5d0d8 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_source_iso.1.pot b/manpages/pot/lb_source_iso.1.pot
index ab7720e..675b232 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_source_net.1.pot b/manpages/pot/lb_source_net.1.pot
index c21c252..7034292 100644
--- a/manpages/pot/lb_source_net.1.pot
+++ b/manpages/pot/lb_source_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_source_tar.1.pot b/manpages/pot/lb_source_tar.1.pot
index d308cee..e08806e 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_source_usb.1.pot b/manpages/pot/lb_source_usb.1.pot
index 51d6732..fe7527c 100644
--- a/manpages/pot/lb_source_usb.1.pot
+++ b/manpages/pot/lb_source_usb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_source_virtual-hdd.1.pot b/manpages/pot/lb_source_virtual-hdd.1.pot
index 99975c9..eb3154d 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,22 +356,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -431,29 +424,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -466,29 +459,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -503,29 +496,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -538,29 +531,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -576,29 +569,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -611,29 +604,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -647,9 +640,9 @@ msgstr ""
 #. type: IP
 #: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
 #: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
-#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
-#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
-#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
+#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_hooks.1:19
+#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
+#: en/lb_binary_linux-image.1:19 en/lb_binary_local-includes.1:19
 #: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
 #: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
 #: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
@@ -659,10 +652,10 @@ msgstr ""
 #: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
 #: en/lb_chroot_apt.1:19 en/lb_chroot_archives.1:19 en/lb_chroot_cache.1:19
 #: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
-#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hostname.1:19
-#: en/lb_chroot_hosts.1:19 en/lb_chroot_install-packages.1:19
-#: en/lb_chroot_interactive.1:19 en/lb_chroot_linux-image.1:19
-#: en/lb_chroot_local-hooks.1:19 en/lb_chroot_local-includes.1:19
+#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
+#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
+#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
+#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.1:19
 #: en/lb_chroot_local-packagelists.1:19 en/lb_chroot_local-patches.1:19
 #: en/lb_chroot_local-preseed.1:19 en/lb_chroot_packagelists.1:19
 #: en/lb_chroot_packages.1:19 en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19
diff --git a/manpages/pot/lb_testroot.1.pot b/manpages/pot/lb_testroot.1.pot
index 437617d..cb0d04c 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -335,22 +328,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -370,22 +363,22 @@ msgstr ""
 #: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
 #: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
 #: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
-#: en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
-#: en/lb_binary_linux-image.1:23 en/lb_binary_local-hooks.1:23
-#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
-#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.1:23
-#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
-#: en/lb_binary_tar.1:23 en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
+#: en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 en/lb_binary_iso.1:23
+#: en/lb_binary_linux-image.1:23 en/lb_binary_local-includes.1:23
+#: en/lb_binary_local-packagelists.1:23 en/lb_binary_manifest.1:23
+#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
+#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.1:23
+#: en/lb_binary_usb.1:23 en/lb_binary_virtual-hdd.1:23
 #: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
 #: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
 #: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
 #: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
 #: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
 #: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
-#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hostname.1:23
-#: en/lb_chroot_hosts.1:23 en/lb_chroot_install-packages.1:23
-#: en/lb_chroot_interactive.1:23 en/lb_chroot_linux-image.1:23
-#: en/lb_chroot_local-hooks.1:23 en/lb_chroot_local-includes.1:23
+#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
+#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
+#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
+#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
 #: en/lb_chroot_local-packagelists.1:23 en/lb_chroot_local-patches.1:23
 #: en/lb_chroot_local-preseed.1:23 en/lb_chroot_packagelists.1:23
 #: en/lb_chroot_packages.1:23 en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23
@@ -404,29 +397,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -438,29 +431,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -473,29 +466,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -510,29 +503,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -545,29 +538,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -583,29 +576,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -618,29 +611,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
diff --git a/manpages/pot/live-build.7.pot b/manpages/pot/live-build.7.pot
index 35257d5..f202bb9 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: 2011-07-15 20:32+0300\n"
+"POT-Creation-Date: 2011-08-04 21:51+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"
@@ -20,8 +20,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -32,17 +32,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -54,8 +53,8 @@ msgstr ""
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -66,30 +65,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-07-15"
+msgid "2011-08-04"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -100,30 +98,29 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a25"
+msgid "3.0~a26"
 msgstr ""
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
 #: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
 #: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_includes.1:1 en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-hooks.1:1 en/lb_binary_local-includes.1:1
+#: en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 en/lb_binary_iso.1:1
+#: en/lb_binary_linux-image.1:1 en/lb_binary_local-includes.1:1
 #: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
 #: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 en/lb_binary_rootfs.1:1
 #: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
@@ -134,17 +131,16 @@ msgstr ""
 #: en/lb_chroot.1:1 en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1
 #: en/lb_chroot_cache.1:1 en/lb_chroot_debianchroot.1:1
 #: en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 en/lb_chroot_hacks.1:1
-#: en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
+#: en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 en/lb_chroot_hosts.1:1
 #: en/lb_chroot_install-packages.1:1 en/lb_chroot_interactive.1:1
-#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-hooks.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-packagelists.1:1
-#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
-#: en/lb_chroot_packagelists.1:1 en/lb_chroot_packages.1:1
-#: en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
-#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
-#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
-#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
-#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_linux-image.1:1 en/lb_chroot_local-includes.1:1
+#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-patches.1:1
+#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
+#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
+#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
+#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
+#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_iso.1:1
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -156,8 +152,8 @@ msgstr ""
 #: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
 #: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
 #: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
-#: en/lb_binary_includes.1:3 en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
-#: en/lb_binary_local-hooks.1:3 en/lb_binary_local-includes.1:3
+#: en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 en/lb_binary_iso.1:3
+#: en/lb_binary_linux-image.1:3 en/lb_binary_local-includes.1:3
 #: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
 #: en/lb_binary_memtest.1:3 en/lb_binary_net.1:3 en/lb_binary_rootfs.1:3
 #: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
@@ -168,17 +164,16 @@ msgstr ""
 #: en/lb_chroot.1:3 en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3
 #: en/lb_chroot_cache.1:3 en/lb_chroot_debianchroot.1:3
 #: en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 en/lb_chroot_hacks.1:3
-#: en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
+#: en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 en/lb_chroot_hosts.1:3
 #: en/lb_chroot_install-packages.1:3 en/lb_chroot_interactive.1:3
-#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-hooks.1:3
-#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-packagelists.1:3
-#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
-#: en/lb_chroot_packagelists.1:3 en/lb_chroot_packages.1:3
-#: en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
-#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
-#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
-#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
-#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
+#: en/lb_chroot_linux-image.1:3 en/lb_chroot_local-includes.1:3
+#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-patches.1:3
+#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
+#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
+#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
+#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
+#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/lb_local.1:3
+#: en/lb_source.1:3 en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
 #: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_iso.1:3
 #: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -190,8 +185,8 @@ msgstr ""
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
 #: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
 #: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
-#: en/lb_binary_includes.1:6 en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
-#: en/lb_binary_local-hooks.1:6 en/lb_binary_local-includes.1:6
+#: en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 en/lb_binary_iso.1:6
+#: en/lb_binary_linux-image.1:6 en/lb_binary_local-includes.1:6
 #: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
 #: en/lb_binary_memtest.1:6 en/lb_binary_net.1:6 en/lb_binary_rootfs.1:6
 #: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
@@ -202,17 +197,16 @@ msgstr ""
 #: en/lb_chroot.1:6 en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6
 #: en/lb_chroot_cache.1:6 en/lb_chroot_debianchroot.1:6
 #: en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 en/lb_chroot_hacks.1:6
-#: en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
+#: en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 en/lb_chroot_hosts.1:6
 #: en/lb_chroot_install-packages.1:6 en/lb_chroot_interactive.1:6
-#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-hooks.1:6
-#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-packagelists.1:6
-#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
-#: en/lb_chroot_packagelists.1:6 en/lb_chroot_packages.1:6
-#: en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
-#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
-#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
-#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
-#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
+#: en/lb_chroot_linux-image.1:6 en/lb_chroot_local-includes.1:6
+#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-patches.1:6
+#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
+#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
+#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
+#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
+#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/lb_local.1:6
+#: en/lb_source.1:6 en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
 #: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_iso.1:6
 #: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -224,8 +218,8 @@ msgstr ""
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
 #: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
 #: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
-#: en/lb_binary_includes.1:9 en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
-#: en/lb_binary_local-hooks.1:9 en/lb_binary_local-includes.1:9
+#: en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 en/lb_binary_iso.1:9
+#: en/lb_binary_linux-image.1:9 en/lb_binary_local-includes.1:9
 #: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
 #: en/lb_binary_memtest.1:9 en/lb_binary_net.1:9 en/lb_binary_rootfs.1:9
 #: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
@@ -236,17 +230,16 @@ msgstr ""
 #: en/lb_chroot.1:9 en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9
 #: en/lb_chroot_cache.1:9 en/lb_chroot_debianchroot.1:9
 #: en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 en/lb_chroot_hacks.1:9
-#: en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
+#: en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 en/lb_chroot_hosts.1:9
 #: en/lb_chroot_install-packages.1:9 en/lb_chroot_interactive.1:9
-#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-hooks.1:9
-#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-packagelists.1:9
-#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
-#: en/lb_chroot_packagelists.1:9 en/lb_chroot_packages.1:9
-#: en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
-#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
-#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
-#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
-#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
+#: en/lb_chroot_linux-image.1:9 en/lb_chroot_local-includes.1:9
+#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-patches.1:9
+#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
+#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
+#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
+#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:243 en/lb_local.1:9
+#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
 #: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
 #: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -258,22 +251,22 @@ msgstr ""
 #: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
 #: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
 #: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
-#: en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
-#: en/lb_binary_linux-image.1:14 en/lb_binary_local-hooks.1:14
-#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
-#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
-#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
-#: en/lb_binary_tar.1:14 en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
+#: en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
+#: en/lb_binary_linux-image.1:14 en/lb_binary_local-includes.1:14
+#: en/lb_binary_local-packagelists.1:14 en/lb_binary_manifest.1:14
+#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
+#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.1:14
+#: en/lb_binary_usb.1:14 en/lb_binary_virtual-hdd.1:14
 #: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
 #: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
 #: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
 #: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
 #: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
 #: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
-#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hostname.1:14
-#: en/lb_chroot_hosts.1:14 en/lb_chroot_install-packages.1:14
-#: en/lb_chroot_interactive.1:14 en/lb_chroot_linux-image.1:14
-#: en/lb_chroot_local-hooks.1:14 en/lb_chroot_local-includes.1:14
+#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
+#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
+#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
+#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
 #: en/lb_chroot_local-packagelists.1:14 en/lb_chroot_local-patches.1:14
 #: en/lb_chroot_local-preseed.1:14 en/lb_chroot_packagelists.1:14
 #: en/lb_chroot_packages.1:14 en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14
@@ -293,22 +286,22 @@ msgstr ""
 #: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
 #: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
 #: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
-#: en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
-#: en/lb_binary_linux-image.1:17 en/lb_binary_local-hooks.1:17
-#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
-#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
-#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
-#: en/lb_binary_tar.1:17 en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
+#: en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
+#: en/lb_binary_linux-image.1:17 en/lb_binary_local-includes.1:17
+#: en/lb_binary_local-packagelists.1:17 en/lb_binary_manifest.1:17
+#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
+#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.1:17
+#: en/lb_binary_usb.1:17 en/lb_binary_virtual-hdd.1:17
 #: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
 #: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
 #: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
 #: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
 #: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
 #: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
-#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hostname.1:17
-#: en/lb_chroot_hosts.1:17 en/lb_chroot_install-packages.1:17
-#: en/lb_chroot_interactive.1:17 en/lb_chroot_linux-image.1:17
-#: en/lb_chroot_local-hooks.1:17 en/lb_chroot_local-includes.1:17
+#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
+#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
+#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
+#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
 #: en/lb_chroot_local-packagelists.1:17 en/lb_chroot_local-patches.1:17
 #: en/lb_chroot_local-preseed.1:17 en/lb_chroot_packagelists.1:17
 #: en/lb_chroot_packages.1:17 en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17
@@ -328,22 +321,22 @@ msgstr ""
 #: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
 #: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
 #: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
-#: en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
-#: en/lb_binary_linux-image.1:21 en/lb_binary_local-hooks.1:21
-#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
-#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
-#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
-#: en/lb_binary_tar.1:21 en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
+#: en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
+#: en/lb_binary_linux-image.1:21 en/lb_binary_local-includes.1:21
+#: en/lb_binary_local-packagelists.1:21 en/lb_binary_manifest.1:21
+#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
+#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.1:21
+#: en/lb_binary_usb.1:21 en/lb_binary_virtual-hdd.1:21
 #: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
 #: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
 #: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
 #: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
 #: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
 #: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
-#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hostname.1:21
-#: en/lb_chroot_hosts.1:21 en/lb_chroot_install-packages.1:21
-#: en/lb_chroot_interactive.1:21 en/lb_chroot_linux-image.1:21
-#: en/lb_chroot_local-hooks.1:21 en/lb_chroot_local-includes.1:21
+#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
+#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
+#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
+#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
 #: en/lb_chroot_local-packagelists.1:21 en/lb_chroot_local-patches.1:21
 #: en/lb_chroot_local-preseed.1:21 en/lb_chroot_packagelists.1:21
 #: en/lb_chroot_packages.1:21 en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21
@@ -363,29 +356,29 @@ msgstr ""
 #: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25
 #: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25
 #: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25
-#: en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
-#: en/lb_binary_linux-image.1:25 en/lb_binary_local-hooks.1:25
-#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
-#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
-#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
-#: en/lb_binary_tar.1:25 en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
+#: en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
+#: en/lb_binary_linux-image.1:25 en/lb_binary_local-includes.1:25
+#: en/lb_binary_local-packagelists.1:25 en/lb_binary_manifest.1:25
+#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
+#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.1:25
+#: en/lb_binary_usb.1:25 en/lb_binary_virtual-hdd.1:25
 #: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
 #: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
 #: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
 #: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
 #: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
 #: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
-#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hostname.1:25
-#: en/lb_chroot_hosts.1:25 en/lb_chroot_install-packages.1:25
-#: en/lb_chroot_interactive.1:25 en/lb_chroot_linux-image.1:25
-#: en/lb_chroot_local-hooks.1:25 en/lb_chroot_local-includes.1:25
+#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
+#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
+#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
+#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
 #: en/lb_chroot_local-packagelists.1:25 en/lb_chroot_local-patches.1:25
 #: en/lb_chroot_local-preseed.1:25 en/lb_chroot_packagelists.1:25
 #: en/lb_chroot_packages.1:25 en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25
 #: en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
 #: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
 #: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
-#: en/lb_config.1:513 en/lb_local.1:24 en/lb_source.1:24
+#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
 #: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
 #: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_iso.1:25
 #: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_usb.1:25
@@ -397,29 +390,29 @@ msgstr ""
 #: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
 #: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
 #: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
-#: en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
-#: en/lb_binary_linux-image.1:26 en/lb_binary_local-hooks.1:26
-#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
-#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
-#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
-#: en/lb_binary_tar.1:26 en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
+#: en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
+#: en/lb_binary_linux-image.1:26 en/lb_binary_local-includes.1:26
+#: en/lb_binary_local-packagelists.1:26 en/lb_binary_manifest.1:26
+#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
+#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.1:26
+#: en/lb_binary_usb.1:26 en/lb_binary_virtual-hdd.1:26
 #: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
 #: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
 #: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
 #: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
 #: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
 #: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
-#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hostname.1:26
-#: en/lb_chroot_hosts.1:26 en/lb_chroot_install-packages.1:26
-#: en/lb_chroot_interactive.1:26 en/lb_chroot_linux-image.1:26
-#: en/lb_chroot_local-hooks.1:26 en/lb_chroot_local-includes.1:26
+#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
+#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
+#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
+#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
 #: en/lb_chroot_local-packagelists.1:26 en/lb_chroot_local-patches.1:26
 #: en/lb_chroot_local-preseed.1:26 en/lb_chroot_packagelists.1:26
 #: en/lb_chroot_packages.1:26 en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26
 #: en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
 #: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
 #: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
-#: en/lb_config.1:514 en/lb_local.1:25 en/lb_source.1:25
+#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
 #: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
 #: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_iso.1:26
 #: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_usb.1:26
@@ -432,29 +425,29 @@ msgstr ""
 #: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
 #: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
 #: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
-#: en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
-#: en/lb_binary_linux-image.1:28 en/lb_binary_local-hooks.1:28
-#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
-#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
-#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
-#: en/lb_binary_tar.1:28 en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
+#: en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
+#: en/lb_binary_linux-image.1:28 en/lb_binary_local-includes.1:28
+#: en/lb_binary_local-packagelists.1:28 en/lb_binary_manifest.1:28
+#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
+#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.1:28
+#: en/lb_binary_usb.1:28 en/lb_binary_virtual-hdd.1:28
 #: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
 #: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
 #: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
 #: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
 #: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
 #: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
-#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hostname.1:28
-#: en/lb_chroot_hosts.1:28 en/lb_chroot_install-packages.1:28
-#: en/lb_chroot_interactive.1:28 en/lb_chroot_linux-image.1:28
-#: en/lb_chroot_local-hooks.1:28 en/lb_chroot_local-includes.1:28
+#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
+#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
+#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
+#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
 #: en/lb_chroot_local-packagelists.1:28 en/lb_chroot_local-patches.1:28
 #: en/lb_chroot_local-preseed.1:28 en/lb_chroot_packagelists.1:28
 #: en/lb_chroot_packages.1:28 en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28
 #: en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
 #: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
 #: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
-#: en/lb_config.1:516 en/lb_local.1:27 en/lb_source.1:27
+#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
 #: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
 #: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_iso.1:28
 #: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_usb.1:28
@@ -469,29 +462,29 @@ msgstr ""
 #: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29
 #: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29
 #: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29
-#: en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
-#: en/lb_binary_linux-image.1:29 en/lb_binary_local-hooks.1:29
-#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
-#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
-#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
-#: en/lb_binary_tar.1:29 en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
+#: en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
+#: en/lb_binary_linux-image.1:29 en/lb_binary_local-includes.1:29
+#: en/lb_binary_local-packagelists.1:29 en/lb_binary_manifest.1:29
+#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
+#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.1:29
+#: en/lb_binary_usb.1:29 en/lb_binary_virtual-hdd.1:29
 #: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
 #: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
 #: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
 #: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
 #: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
 #: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
-#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hostname.1:29
-#: en/lb_chroot_hosts.1:29 en/lb_chroot_install-packages.1:29
-#: en/lb_chroot_interactive.1:29 en/lb_chroot_linux-image.1:29
-#: en/lb_chroot_local-hooks.1:29 en/lb_chroot_local-includes.1:29
+#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
+#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
+#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
+#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
 #: en/lb_chroot_local-packagelists.1:29 en/lb_chroot_local-patches.1:29
 #: en/lb_chroot_local-preseed.1:29 en/lb_chroot_packagelists.1:29
 #: en/lb_chroot_packages.1:29 en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29
 #: en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
 #: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
 #: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
-#: en/lb_config.1:517 en/lb_local.1:28 en/lb_source.1:28
+#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
 #: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
 #: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_iso.1:29
 #: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_usb.1:29
@@ -504,29 +497,29 @@ msgstr ""
 #: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
 #: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
 #: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
-#: en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
-#: en/lb_binary_linux-image.1:31 en/lb_binary_local-hooks.1:31
-#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
-#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
-#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
-#: en/lb_binary_tar.1:31 en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
+#: en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
+#: en/lb_binary_linux-image.1:31 en/lb_binary_local-includes.1:31
+#: en/lb_binary_local-packagelists.1:31 en/lb_binary_manifest.1:31
+#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
+#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.1:31
+#: en/lb_binary_usb.1:31 en/lb_binary_virtual-hdd.1:31
 #: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
 #: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
 #: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
 #: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
 #: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
 #: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
-#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hostname.1:31
-#: en/lb_chroot_hosts.1:31 en/lb_chroot_install-packages.1:31
-#: en/lb_chroot_interactive.1:31 en/lb_chroot_linux-image.1:31
-#: en/lb_chroot_local-hooks.1:31 en/lb_chroot_local-includes.1:31
+#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
+#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
+#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
+#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
 #: en/lb_chroot_local-packagelists.1:31 en/lb_chroot_local-patches.1:31
 #: en/lb_chroot_local-preseed.1:31 en/lb_chroot_packagelists.1:31
 #: en/lb_chroot_packages.1:31 en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31
 #: en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
 #: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
 #: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
-#: en/lb_config.1:519 en/lb_local.1:30 en/lb_source.1:30
+#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
 #: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
 #: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_iso.1:31
 #: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_usb.1:31
@@ -542,29 +535,29 @@ msgstr ""
 #: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32
 #: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32
 #: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32
-#: en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
-#: en/lb_binary_linux-image.1:32 en/lb_binary_local-hooks.1:32
-#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
-#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
-#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
-#: en/lb_binary_tar.1:32 en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
+#: en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
+#: en/lb_binary_linux-image.1:32 en/lb_binary_local-includes.1:32
+#: en/lb_binary_local-packagelists.1:32 en/lb_binary_manifest.1:32
+#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
+#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.1:32
+#: en/lb_binary_usb.1:32 en/lb_binary_virtual-hdd.1:32
 #: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
 #: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
 #: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
 #: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
 #: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
 #: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
-#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hostname.1:32
-#: en/lb_chroot_hosts.1:32 en/lb_chroot_install-packages.1:32
-#: en/lb_chroot_interactive.1:32 en/lb_chroot_linux-image.1:32
-#: en/lb_chroot_local-hooks.1:32 en/lb_chroot_local-includes.1:32
+#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
+#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
+#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
+#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
 #: en/lb_chroot_local-packagelists.1:32 en/lb_chroot_local-patches.1:32
 #: en/lb_chroot_local-preseed.1:32 en/lb_chroot_packagelists.1:32
 #: en/lb_chroot_packages.1:32 en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32
 #: en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
 #: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
 #: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
-#: en/lb_config.1:520 en/lb_local.1:31 en/lb_source.1:31
+#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
 #: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
 #: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_iso.1:32
 #: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_usb.1:32
@@ -577,29 +570,29 @@ msgstr ""
 #: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
 #: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
 #: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
-#: en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
-#: en/lb_binary_linux-image.1:33 en/lb_binary_local-hooks.1:33
-#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
-#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
-#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
-#: en/lb_binary_tar.1:33 en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
+#: en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
+#: en/lb_binary_linux-image.1:33 en/lb_binary_local-includes.1:33
+#: en/lb_binary_local-packagelists.1:33 en/lb_binary_manifest.1:33
+#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
+#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.1:33
+#: en/lb_binary_usb.1:33 en/lb_binary_virtual-hdd.1:33
 #: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
 #: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
 #: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
 #: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
 #: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
 #: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
-#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hostname.1:33
-#: en/lb_chroot_hosts.1:33 en/lb_chroot_install-packages.1:33
-#: en/lb_chroot_interactive.1:33 en/lb_chroot_linux-image.1:33
-#: en/lb_chroot_local-hooks.1:33 en/lb_chroot_local-includes.1:33
+#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
+#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
+#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
+#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
 #: en/lb_chroot_local-packagelists.1:33 en/lb_chroot_local-patches.1:33
 #: en/lb_chroot_local-preseed.1:33 en/lb_chroot_packagelists.1:33
 #: en/lb_chroot_packages.1:33 en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33
 #: en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
 #: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
 #: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
-#: en/lb_config.1:521 en/lb_local.1:32 en/lb_source.1:32
+#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
 #: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
 #: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_iso.1:33
 #: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_usb.1:33
@@ -634,6 +627,16 @@ msgid "B<--verbose>"
 msgstr ""
 
 #. type: Plain text
+#: en/lb_config.1:513 en/live-build.7:233
+msgid "I<live-boot>(7)"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:515 en/live-build.7:235
+msgid "I<live-config>(7)"
+msgstr ""
+
+#. type: Plain text
 #: en/live-build.7:5
 msgid "B<live-build> - the Debian Live tool suite"
 msgstr ""
@@ -1140,7 +1143,7 @@ msgstr ""
 #. type: IP
 #: en/live-build.7:118
 #, no-wrap
-msgid "B<lb_chroot_local-hooks>(1)"
+msgid "B<lb_chroot_hooks>(1)"
 msgstr ""
 
 #. type: Plain text
@@ -1724,13 +1727,3 @@ msgstr ""
 #, no-wrap
 msgid "B</etc/live/build.d/>"
 msgstr ""
-
-#. type: Plain text
-#: en/live-build.7:233
-msgid "I<live-boot>(7)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-build.7:235
-msgid "I<live-config>(7)"
-msgstr ""
diff --git a/package-lists/gnome b/package-lists/gnome
index 420fc68..461d814 100644
--- a/package-lists/gnome
+++ b/package-lists/gnome
@@ -3,10 +3,10 @@
 #include <gnome-core>
 
 gnome-desktop-environment gnome-screensaver gnome-themes-extras
-#nif MODE ubuntu
+#nif MODE ubuntu kubuntu
 system-config-printer
 #endif
-#if MODE ubuntu
+#if MODE ubuntu kubuntu
 system-config-printer-gnome
 #endif
 
diff --git a/package-lists/minimal b/package-lists/minimal
index 77f9aa8..4cb7438 100644
--- a/package-lists/minimal
+++ b/package-lists/minimal
@@ -7,6 +7,6 @@
 
 eject file user-setup sudo
 
-#if MODE ubuntu
+#if MODE ubuntu kubuntu
 gnupg
 #endif
diff --git a/package-lists/standard b/package-lists/standard
index 94dd336..132a02b 100644
--- a/package-lists/standard
+++ b/package-lists/standard
@@ -11,6 +11,6 @@ locales
 locales-all
 #endif
 
-#if MODE ubuntu
+#if MODE ubuntu kubuntu
 ubuntu-minimal
 #endif
diff --git a/package-lists/studio b/package-lists/studio
deleted file mode 100644
index fc6c68f..0000000
--- a/package-lists/studio
+++ /dev/null
@@ -1,101 +0,0 @@
-# /usr/share/live/build/package-lists/studio - package list for live-build(7)
-
-# packagelist inspired from the A/DeMuDi one.
-#
-# You don't want to use that list as a standalone list. Instead use
-# studio-* desktop variants.
-
-alsa-tools
-alsa-tools-gui
-ams
-amsynth
-artsbuilder
-arts
-audacity
-aumix-gtk
-beast
-aterm
-bristol
-cdparanoia
-ceres3
-cheesetracker
-cmt
-cplay
-creox
-freewheeling
-ladspa-sdk
-lakai
-mcp-plugins
-mhwaveedit
-mikmod
-moosic
-mp3burn
-mp3info
-mpg321
-muse
-musiclibrarian
-noteedit
-nyquist
-openjade
-openssh
-pd-externals
-pd-zexy
-pmidi
-puredata
-pytone
-qjackctl
-qsynth
-realtime-lsm
-recode
-rev-plugins
-rezound
-ripperx
-rosegarden
-seq24
-sfftw2
-sfront
-solfege
-somaplayer
-songwrite
-soundtracker
-sox
-specimen
-spiralsynthmodular
-supercollider
-supercollider-doc
-swami
-sweep
-swh-plugins
-tap-plugins
-terminatorx
-timidity
-timemachine
-timidity-el
-timidity-interfaces-extra
-unison
-vkeybd
-vorbis-tools
-wavbreaker
-wavesurfer
-xmms
-xmms-bumpscope
-xmms-cdread
-xmms-crossfade
-xmms-flac
-xmms-fmradio
-xmms-goodnight
-xmms-iris
-xmms-jack
-xmms-jess
-xmms-ladspa
-xmms-lirc
-xmms-mad
-xmms-modplug
-xmms-msa
-xmms-osd-plugin
-xmms-qbble
-xmms-shell
-xmms-status-plugin
-xmms-synaesthesia
-xmms-volnorm
-zynaddsubfx
diff --git a/package-lists/studio-gnome b/package-lists/studio-gnome
deleted file mode 100644
index 2481951..0000000
--- a/package-lists/studio-gnome
+++ /dev/null
@@ -1,4 +0,0 @@
-# /usr/share/live/build/package-lists/studio-gnome - package list for live-build(7)
-
-#include <gnome>
-#include <studio>
diff --git a/package-lists/studio-kde b/package-lists/studio-kde
deleted file mode 100644
index 820b81b..0000000
--- a/package-lists/studio-kde
+++ /dev/null
@@ -1,4 +0,0 @@
-# /usr/share/live/build/package-lists/studio-kde - package list for live-build(7)
-
-#include <kde>
-#include <studio>
diff --git a/package-lists/studio-xfce b/package-lists/studio-xfce
deleted file mode 100644
index c7bed4e..0000000
--- a/package-lists/studio-xfce
+++ /dev/null
@@ -1,4 +0,0 @@
-# /usr/share/live/build/package-lists/studio-xfce - package list for live-build(7)
-
-#include <xfce>
-#include <studio>
diff --git a/scripts/build/lb_binary_chroot b/scripts/build/lb_binary_chroot
index 4f02e50..f5ac80f 100755
--- a/scripts/build/lb_binary_chroot
+++ b/scripts/build/lb_binary_chroot
@@ -102,12 +102,14 @@ then
 	case "${LB_BUILD_WITH_CHROOT}" in
 		true)
 			cp config/binary_rootfs/excludes chroot/chroot/excludes
+			# Not using Chroot() here because we want explicitly /bin/bash (for the time being)
 			chroot chroot/chroot /usr/bin/env -i xargs --arg-file=/excludes -I FILE bash -c 'rm -rf FILE'
 			rm -f chroot/chroot/excludes
 			;;
 
 		false)
 			cp config/binary_rootfs/excludes chroot/excludes
+			# Not using Chroot() here because we want explicitly /bin/bash (for the time being)
 			chroot chroot /usr/bin/env -i xargs --arg-file=/excludes -I FILE bash -c 'rm -rf FILE'
 			rm -f chroot/excludes
 			;;
diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer
index b193151..2605093 100755
--- a/scripts/build/lb_binary_debian-installer
+++ b/scripts/build/lb_binary_debian-installer
@@ -113,6 +113,22 @@ esac
 
 # Set architecture-specific variables
 case "${LB_ARCHITECTURES}" in
+	armel)
+		DEFAULT_FLAVOUR="$(echo ${LH_LINUX_FLAVOURS} | awk '{ print $1 }')"
+		case "${DI_IMAGE_TYPE}" in
+			cdrom)
+				DI_REMOTE_BASE="${DEFAULT_FLAVOUR}/cdrom"
+				;;
+
+			netboot)
+				DI_REMOTE_BASE="${DEFAULT_FLAVOUR}/netboot"
+				;;
+		esac
+
+		DI_REMOTE_KERNEL="vmlinuz"
+		DI_REMOTE_BASE_GTK="${DI_REMOTE_BASE}/gtk"
+		;;
+
 	powerpc)
 		case "${DI_IMAGE_TYPE}" in
 			cdrom)
@@ -299,11 +315,10 @@ then
 
 	case "${LB_ARCHITECTURES}" in
 		amd64)
-			#DI_REQ_PACKAGES="lilo grub grub2"
-			DI_REQ_PACKAGES="lilo grub"
+			DI_REQ_PACKAGES="lilo grub grub-pc"
 
 			case "${LB_MODE}" in
-				ubuntu)
+				ubuntu|kubuntu)
 					DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic"
 					;;
 
@@ -314,11 +329,10 @@ then
 			;;
 
 		i386)
-			#DI_REQ_PACKAGES="elilo lilo grub grub2"
-			DI_REQ_PACKAGES="elilo lilo grub"
+			DI_REQ_PACKAGES="elilo lilo grub grub-pc"
 
 			case "${LB_MODE}" in
-				ubuntu)
+				ubuntu|kubuntu)
 					DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic"
 					;;
 
@@ -331,7 +345,7 @@ then
 		sparc)
 			DI_REQ_PACKAGES="silo"
 			case "${LB_MODE}" in
-				ubuntu)
+				ubuntu|kubuntu)
 					DI_PACKAGES="${DI_REQ_PACKAGES} linux-sparc64"
 					;;
 
@@ -344,7 +358,7 @@ then
 		powerpc)
 			DI_REQ_PACKAGES="yaboot"
 			case "${LB_MODE}" in
-				ubuntu)
+				ubuntu|kubuntu)
 					DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-powerpc linux-image-powerpc64-smp"
 					;;
 
@@ -355,7 +369,7 @@ then
 			;;
 	esac
 
-	DI_PACKAGES="${DI_PACKAGES} busybox cryptsetup lvm2"
+	DI_PACKAGES="${DI_PACKAGES} busybox cryptsetup mdadm lvm2"
 
 	case "${LB_MODE}" in
 		debian)
diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk
index 145a0c2..a7ddef2 100755
--- a/scripts/build/lb_binary_disk
+++ b/scripts/build/lb_binary_disk
@@ -66,6 +66,12 @@ case "${LB_MODE}" in
 		TRACE=""
 		;;
 
+	kubuntu)
+		TITLE="Kubuntu"
+		STRING="Build ${ARCHITECTURE}"
+		TRACE=""
+		;;
+
 	*)
 		STRING="Snapshot ${ARCHITECTURE}"
 		TRACE=""
@@ -80,12 +86,12 @@ fi
 
 case "${LB_INITRAMFS}" in
 	casper)
-		for INITRD in binary/casper/initrd.img*
+		for INITRD in $(ls binary/casper/initrd.img* > /dev/null 2>&1)
 		do
-			mkdir uuid
-			cd uuid
+			mkdir -p binary/uuid
+			cd binary/uuid
 
-			zcat "../${INITRD}" | cpio --quiet -id conf/uuid.conf
+			zcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
 
 			if [ -e conf/uuid.conf ]
 			then
@@ -94,8 +100,8 @@ case "${LB_INITRAMFS}" in
 				Echo_warning "Failed to find casper uuid.conf in '${INITRD}'"
 			fi
 
-			cd ..
-			rm -rf uuid
+			cd ${OLDPWD}
+			rm -rf binary/uuid
 		done
 		;;
 esac
@@ -118,14 +124,13 @@ case "${LB_DEBIAN_INSTALLER}" in
 
 		touch binary/.disk/base_installable
 
-		echo "not_complete" > binary/.disk/cd_type
-
 		if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
 		then
+			echo "live" > binary/.disk/cd_type
 			echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/INSTALL Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
 		else
+			echo "not_complete" > binary/.disk/cd_type
 			echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/NETINST Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
-
 		fi
 
 		cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include binary/.disk/udeb_include
diff --git a/scripts/build/lb_binary_local-hooks b/scripts/build/lb_binary_hooks
similarity index 64%
rename from scripts/build/lb_binary_local-hooks
rename to scripts/build/lb_binary_hooks
index e3c08c2..32cf5a0 100755
--- a/scripts/build/lb_binary_local-hooks
+++ b/scripts/build/lb_binary_hooks
@@ -14,7 +14,7 @@ set -e
 . "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
 
 # Setting static variables
-DESCRIPTION="$(Echo 'execute local hooks in binary')"
+DESCRIPTION="$(Echo 'execute hooks in binary')"
 HELP=""
 USAGE="${PROGRAM} [--force]"
 
@@ -24,13 +24,13 @@ Arguments "${@}"
 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
 Set_defaults
 
-Echo_message "Begin executing local hooks..."
+Echo_message "Begin executing hooks..."
 
 # Requiring stage file
 Require_stagefile .stage/config .stage/bootstrap
 
 # Checking stage file
-Check_stagefile .stage/binary_local-hooks
+Check_stagefile .stage/binary_hooks
 
 # Checking lock file
 Check_lockfile .lock
@@ -38,10 +38,24 @@ Check_lockfile .lock
 # Creating lock file
 Create_lockfile .lock
 
-# Processing local-hooks
-if Find_files config/binary_local-hooks/*
+## Processing distribution hooks
+
+# Running hooks
+for _HOOK in ${LB_BINARY_HOOKS}
+do
+	if [ -e "${LB_BASE}/hooks/???-${_HOOK}.binary" ]
+	then
+		cd binary
+		./"${LB_BASE}/hooks/???-${_HOOK}.binary" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
+		cd "${OLDPWD}"
+	fi
+done
+
+## Processing local hooks
+
+if Find_files config/hooks/*.binary
 then
-	for HOOK in config/binary_local-hooks/*
+	for HOOK in config/hooks/*.binary
 	do
 		# Making hook executable
 		if [ ! -x "${HOOK}" ]
@@ -54,5 +68,5 @@ then
 	done
 
 	# Creating stage file
-	Create_stagefile .stage/binary_local-hooks
+	Create_stagefile .stage/binary_hooks
 fi
diff --git a/scripts/build/lb_binary_linux-image b/scripts/build/lb_binary_linux-image
index cac19d8..43e09a9 100755
--- a/scripts/build/lb_binary_linux-image
+++ b/scripts/build/lb_binary_linux-image
@@ -24,7 +24,7 @@ Arguments "${@}"
 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
 Set_defaults
 
-if [ "${LB_BINARY_IMAGES}" = "virtual-hdd" ]
+if [ "${LB_BINARY_IMAGES}" = "virtual-hdd" ] || [ "${LB_LINUX_PACKAGES}" = "none" ]
 then
 	exit 0
 fi
@@ -73,8 +73,11 @@ Check_multiarchitectures
 mkdir -p "${DESTDIR}"
 
 # Installing linux-image
-cp chroot/boot/"${LINUX}"-* "${DESTDIR}"
-cp chroot/boot/initrd.img-* "${DESTDIR}"
+if [ "${LB_LINUX_PACKAGES}" != "none" ]
+then
+	cp chroot/boot/"${LINUX}"-* "${DESTDIR}"
+	cp chroot/boot/initrd.img-* "${DESTDIR}"
+fi
 
 case "${LB_INITRAMFS}" in
 	live-boot)
diff --git a/scripts/build/lb_binary_rootfs b/scripts/build/lb_binary_rootfs
index 663f212..6f5ed21 100755
--- a/scripts/build/lb_binary_rootfs
+++ b/scripts/build/lb_binary_rootfs
@@ -135,7 +135,7 @@ case "${LB_CHROOT_FILESYSTEM}" in
 				mv chroot/filesystem.${LB_CHROOT_FILESYSTEM} binary/${INITFS}
 
 				case "${LB_MODE}" in
-					ubuntu)
+					ubuntu|kubuntu)
 						du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
 						;;
 				esac
@@ -366,7 +366,7 @@ case "${LB_CHROOT_FILESYSTEM}" in
 				rm -f chroot/chroot/excludes
 
 				case "${LB_MODE}" in
-					ubuntu)
+					ubuntu|kubuntu)
 						du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
 						;;
 				esac
@@ -431,7 +431,7 @@ case "${LB_CHROOT_FILESYSTEM}" in
 				mksquashfs chroot binary/${INITFS}/filesystem.squashfs ${MKSQUASHFS_OPTIONS}
 
 				case "${LB_MODE}" in
-					ubuntu)
+					ubuntu|kubuntu)
 						du -B 1 -s chroot | cut -f1 > binary/${INITFS}/filesystem.size
 						;;
 				esac
diff --git a/scripts/build/lb_binary_usb b/scripts/build/lb_binary_usb
index 0b07cfe..96feee4 100755
--- a/scripts/build/lb_binary_usb
+++ b/scripts/build/lb_binary_usb
@@ -164,8 +164,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
 		;;
 esac
 
-sleep 1
-${LB_LOSETUP} -d ${FREELO}
+Lodetach ${FREELO}
 
 FREELO="$(${LB_LOSETUP} -f)"
 Losetup $FREELO chroot/binary.img 1
@@ -190,16 +189,10 @@ esac
 case "${LB_BUILD_WITH_CHROOT}" in
 	true)
 		Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}"
-
-		Chroot chroot "parted -s ${FREELO} set 1 boot on" || true
-		Chroot chroot "parted -s ${FREELO} set 1 lba off" || true
 		;;
 
 	false)
 		mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}
-
-		parted -s ${FREELO} set 1 boot on || true
-		parted -s ${FREELO} set 1 lba off || true
 		;;
 esac
 
@@ -260,11 +253,27 @@ then
 	esac
 fi
 
-sleep 1
-${LB_LOSETUP} -d ${FREELO}
+Lodetach ${FREELO}
 
 echo "!!! The above error/warning messages can be ignored !!!"
 
+FREELO="$(${LB_LOSETUP} -f)"
+Losetup "${FREELO}" chroot/binary.img 0
+
+case "${LB_BUILD_WITH_CHROOT}" in
+	true)
+		Chroot chroot "parted -s ${FREELO} set 1 boot on" || true
+		Chroot chroot "parted -s ${FREELO} set 1 lba off" || true
+		;;
+
+	false)
+		parted -s "${FREELO}" set 1 boot on || true
+		parted -s "${FREELO}" set 1 lba off || true
+		;;
+esac
+
+Lodetach ${FREELO}
+
 if [ -n "${MAKEDEV}" ]
 then
 	rm -rf chroot/dev
diff --git a/scripts/build/lb_bootstrap_debootstrap b/scripts/build/lb_bootstrap_debootstrap
index bcc0980..1b5f5fe 100755
--- a/scripts/build/lb_bootstrap_debootstrap
+++ b/scripts/build/lb_bootstrap_debootstrap
@@ -103,6 +103,13 @@ then
 	DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --verbose"
 fi
 
+# If LB_APT_SECURE is false, do not check signatures of the Release file
+# (requires debootstrap >= 1.0.30)
+if [ "${LB_APT_SECURE}" = "false" ] && /usr/sbin/debootstrap --help  | grep -qs '\-\-no-check-gpg'
+then
+	DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --no-check-gpg"
+fi
+
 if [ -x "/usr/sbin/debootstrap" ]
 then
 	if [ "${LB_CACHE_PACKAGES}" = "true" ]
diff --git a/scripts/build/lb_chroot b/scripts/build/lb_chroot
index d0df15e..c019418 100755
--- a/scripts/build/lb_chroot
+++ b/scripts/build/lb_chroot
@@ -72,7 +72,7 @@ done
 lb chroot_live-packages ${*}
 lb chroot_local-includes ${*}
 lb chroot_local-patches ${*}
-lb chroot_local-hooks ${*}
+lb chroot_hooks ${*}
 lb chroot_hacks ${*}
 lb chroot_interactive ${*}
 
diff --git a/scripts/build/lb_chroot_archives b/scripts/build/lb_chroot_archives
index 4b65365..d5dedb4 100755
--- a/scripts/build/lb_chroot_archives
+++ b/scripts/build/lb_chroot_archives
@@ -136,7 +136,7 @@ EOF
 					fi
 					;;
 
-				ubuntu)
+				ubuntu|kubuntu)
 					echo "deb ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
 
 					if [ "${LB_SOURCE}" = "true" ]
@@ -150,7 +150,7 @@ EOF
 		if [ "${LB_VOLATILE}" = "true" ]
 		then
 			case "${LB_MODE}" in
-				debian|ubuntu)
+				debian|ubuntu|kubuntu)
 					echo "deb ${LB_PARENT_MIRROR_CHROOT_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
 
 					if [ "${LB_SOURCE}" = "true" ]
@@ -204,12 +204,20 @@ EOF
 			for REPOSITORY in ${LB_ARCHIVES}
 			do
 				# ubuntu workaround to allow using live.debian.net
-				if [ "${LB_MODE}" = "ubuntu" ] && [ "${REPOSITORY}" = "live.debian.net" ]
-				then
-					_DISTRIBUTION="sid"
-				else
-					_DISTRIBUTION="${LB_PARENT_DISTRIBUTION}"
-				fi
+				case "${LB_MODE}" in
+					ubuntu|kubuntu)
+						if [ "${REPOSITORY}" = "live.debian.net" ]
+						then
+							_DISTRIBUTION="sid"
+						else
+							_DISTRIBUTION="${LB_PARENT_DISTRIBUTION}"
+						fi
+						;;
+
+					*)
+						_DISTRIBUTION="${LB_PARENT_DISTRIBUTION}"
+						;;
+				esac
 
 				# Prefer archives from the config tree
 				# over the global ones.
@@ -660,7 +668,7 @@ EOF
 					fi
 					;;
 
-				ubuntu)
+				ubuntu|kubuntu)
 					echo "deb ${LB_PARENT_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
 
 					if [ "${LB_SOURCE}" = "true" ]
@@ -674,7 +682,7 @@ EOF
 		if [ "${LB_VOLATILE}" = "true" ]
 		then
 			case "${LB_MODE}" in
-				debian|ubuntu)
+				debian|ubuntu|kubuntu)
 					echo "deb ${LB_PARENT_MIRROR_BINARY_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
 
 					if [ "${LB_SOURCE}" = "true" ]
diff --git a/scripts/build/lb_chroot_dpkg b/scripts/build/lb_chroot_dpkg
index 3194c04..7daf7bf 100755
--- a/scripts/build/lb_chroot_dpkg
+++ b/scripts/build/lb_chroot_dpkg
@@ -71,7 +71,7 @@ EOF
 		fi
 
 		# flash-kernel
-		Chroot chroot dpkg-divert --rename --add /usr/sbin/flash-kernel
+		Chroot chroot dpkg-divert --rename --quiet --add /usr/sbin/flash-kernel
 		ln -s /bin/true chroot/usr/sbin/flash-kernel
 
 		# Creating stage file
@@ -91,7 +91,7 @@ EOF
 
 		# flash-kernel
 		rm -f chroot/usr/sbin/flash-kernel
-		Chroot chroot dpkg-divert --rename --remove /usr/sbin/flash-kernel
+		Chroot chroot dpkg-divert --rename --quiet --remove /usr/sbin/flash-kernel
 
 		# samhain
 		if [ -e /var/state/samhain/samhain_file.orig ]
diff --git a/scripts/build/lb_chroot_hacks b/scripts/build/lb_chroot_hacks
index eed0294..57f5769 100755
--- a/scripts/build/lb_chroot_hacks
+++ b/scripts/build/lb_chroot_hacks
@@ -226,6 +226,14 @@ rm -f chroot/var/cache/debconf/*-old
 rm -f chroot/var/lib/dpkg/*-old
 rm -f chroot/var/log/apt/term.log
 
+# Delete and re-create temporary directories
+TEMP_DIRS="/tmp /var/tmp"
+for DIR in ${TEMP_DIRS}
+do
+	rm -rf "chroot/${DIR}"
+	install -d -m 1777 "chroot/${DIR}"
+done
+
 if [ -n "${LB_ROOT_COMMAND}" ]
 then
 	${LB_ROOT_COMMAND} chown -R --quiet $(whoami):$(whoami) chroot
diff --git a/scripts/build/lb_chroot_hooks b/scripts/build/lb_chroot_hooks
new file mode 100755
index 0000000..7080459
--- /dev/null
+++ b/scripts/build/lb_chroot_hooks
@@ -0,0 +1,103 @@
+#!/bin/sh
+
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2011 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
+
+# Including common functions
+. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+
+# Setting static variables
+DESCRIPTION="$(Echo 'execute hooks in chroot')"
+HELP=""
+USAGE="${PROGRAM} [--force]"
+
+Arguments "${@}"
+
+# Reading configuration files
+Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
+Set_defaults
+
+Echo_message "Begin executing hooks..."
+
+# Requiring stage file
+Require_stagefile .stage/config .stage/bootstrap
+
+# Checking stage file
+Check_stagefile .stage/chroot_hooks
+
+# Checking lock file
+Check_lockfile .lock
+
+# Creating lock file
+Create_lockfile .lock
+
+## Processing distribution hooks
+
+# Copying hooks
+for _HOOK in ${LB_CHROOT_HOOKS}
+do
+	if [ -e "${LB_BASE}/hooks/???-${_HOOK}.chroot" ]
+	then
+		mkdir -p chroot/root/lb_chroot_hooks
+		cp "${LB_BASE}/hooks/???-${_HOOK}.chroot" chroot/root/lb_chroot_hooks
+	fi
+done
+
+# Running hooks
+if ls chroot/root/lb_chroot_hooks/* > /dev/null 2>&1
+then
+	for _HOOK in chroot/root/lb_chroot_hooks/*
+	do
+		Chroot chroot "/root/$(basename ${_HOOK})" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
+		rm -f chroot/root/"$(basename ${_HOOK})"
+	done
+
+	rmdir chroot/root/lb_chroot_hooks
+fi
+
+## Processing local hooks
+
+if Find_files config/hooks/*.chroot
+then
+	# Restoring cache
+	Restore_cache cache/packages_chroot
+
+	# Make build config available to chroot hooks.
+	mkdir -p chroot/root/config
+	mount -o bind,ro config chroot/root/config
+
+	for _HOOK in config/hooks/*.chroot
+	do
+		# Copying hook
+		cp "${_HOOK}" chroot/root
+
+		# Making hook executable
+		if [ ! -x chroot/root/"$(basename ${_HOOK})" ]
+		then
+			chmod +x chroot/root/"$(basename ${_HOOK})"
+		fi
+
+		# Executing hook
+		Chroot chroot "/root/$(basename ${_HOOK})" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
+
+		# Removing hook
+		rm -f chroot/root/"$(basename ${_HOOK})"
+	done
+
+	# Remove bind mount of build config inside chroot.
+	umount chroot/root/config
+	rmdir chroot/root/config
+
+	# Saving cache
+	Save_cache cache/packages_chroot
+
+	# Creating stage file
+	Create_stagefile .stage/chroot_hooks
+fi
diff --git a/scripts/build/lb_chroot_local-hooks b/scripts/build/lb_chroot_local-hooks
deleted file mode 100755
index c6482c5..0000000
--- a/scripts/build/lb_chroot_local-hooks
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/bin/sh
-
-## live-build(7) - System Build Scripts
-## Copyright (C) 2006-2011 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
-
-# Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
-
-# Setting static variables
-DESCRIPTION="$(Echo 'execute local hooks in chroot')"
-HELP=""
-USAGE="${PROGRAM} [--force]"
-
-Arguments "${@}"
-
-# Reading configuration files
-Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
-Set_defaults
-
-Echo_message "Begin executing local hooks..."
-
-# Requiring stage file
-Require_stagefile .stage/config .stage/bootstrap
-
-# Checking stage file
-Check_stagefile .stage/chroot_local-hooks
-
-# Checking lock file
-Check_lockfile .lock
-
-# Creating lock file
-Create_lockfile .lock
-
-# Processing local-hooks
-if Find_files config/chroot_local-hooks/*
-then
-	# Restoring cache
-	Restore_cache cache/packages_chroot
-
-	for HOOK in config/chroot_local-hooks/*
-	do
-		# Copying hook
-		cp "${HOOK}" chroot/root
-
-		# Making hook executable
-		if [ ! -x chroot/root/"$(basename ${HOOK})" ]
-		then
-			chmod +x chroot/root/"$(basename ${HOOK})"
-		fi
-
-		# Executing hook
-		Chroot chroot "/root/$(basename ${HOOK})" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
-
-		# Removing hook
-		rm -f chroot/root/"$(basename ${HOOK})"
-	done
-
-	# Saving cache
-	Save_cache cache/packages_chroot
-
-	# Creating stage file
-	Create_stagefile .stage/chroot_local-hooks
-fi
diff --git a/scripts/build/lb_chroot_task-lists b/scripts/build/lb_chroot_task-lists
index 82aa225..2bdffd8 100755
--- a/scripts/build/lb_chroot_task-lists
+++ b/scripts/build/lb_chroot_task-lists
@@ -82,7 +82,7 @@ then
 			APT_TASKS=
 
 			case "${LB_MODE}" in
-				ubuntu)
+				ubuntu|kubuntu)
 					TASKS="$(cat chroot/root/chroot_tasks)"
 					;;
 
diff --git a/scripts/build/lb_clean b/scripts/build/lb_clean
index 23f2f7f..666ffc9 100755
--- a/scripts/build/lb_clean
+++ b/scripts/build/lb_clean
@@ -71,6 +71,7 @@ do
 
 		--chroot)
 			Echo_message "Cleaning chroot"
+			${LB_ROOT_COMMAND} umount -f chroot/run > /dev/null 2>&1 || true
 			${LB_ROOT_COMMAND} umount -f chroot/sys > /dev/null 2>&1 || true
 			${LB_ROOT_COMMAND} umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
 			${LB_ROOT_COMMAND} umount -f chroot/proc > /dev/null 2>&1 || true
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index 6c464ef..597cfcf 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -27,7 +27,7 @@ then
 fi
 
 # Setting static variables
-PROGREAM="lb config"
+PROGRAM="lb config"
 DESCRIPTION="$(Echo 'create configuration for live-build(7)')"
 USAGE="${PROGRAM}   [--apt apt|aptitude]\n\
 \t    [--apt-ftp-proxy URL]\n\
@@ -112,7 +112,7 @@ USAGE="${PROGRAM}   [--apt apt|aptitude]\n\
 \t    [--mirror-binary-volatile URL]\n\
 \t    [--mirror-binary-backports URL]\n\
 \t    [--mirror-debian-installer URL]\n\
-\t    [--mode debian|emdebian|ubuntu]\n\
+\t    [--mode debian|emdebian|ubuntu|kubuntu]\n\
 \t    [--net-root-filesystem nfs|cfs]\n\
 \t    [--net-root-mountoptions OPTIONS]\n\
 \t    [--net-root-path PATH]\n\
@@ -170,7 +170,7 @@ Local_arguments ()
 		help,ignore-system-defaults,quiet,usage,verbose,version"
 	# Remove spaces added by indentation
 	LONG_OPTIONS="$(echo ${LONG_OPTIONS} | tr -d ' ')"
-	ARGUMENTS="$(getopt --longoptions ${LONG_OPTIONS} --name="${PROGRAM}" --options a:f:d:m:l:k:p:b:e:r:s:c:huv --shell sh -- "${@}")"
+	ARGUMENTS="$(getopt --longoptions ${LONG_OPTIONS} --name="${PROGRAM}" --options a:f:d:m:l:k:p:b:e:s:c:huv --shell sh -- "${@}")"
 
 	if [ "${?}" != "0" ]
 	then
@@ -1150,7 +1150,7 @@ EOF
 # Creating lb_chroot_* configuration
 mkdir -p config/archives
 mkdir -p config/chroot_apt
-mkdir -p config/chroot_local-hooks
+mkdir -p config/hooks
 mkdir -p config/chroot_local-includes
 mkdir -p config/chroot_local-patches
 mkdir -p config/chroot_packages
@@ -1223,7 +1223,6 @@ mkdir -p config/binary_debian-installer
 mkdir -p config/binary_debian-installer-includes
 mkdir -p config/binary_grub
 mkdir -p config/binary_local-debs
-mkdir -p config/binary_local-hooks
 mkdir -p config/binary_local-includes
 mkdir -p config/package-lists
 mkdir -p config/binary_local-udebs
diff --git a/scripts/build/lb_source_disk b/scripts/build/lb_source_disk
index 3d21223..3a93d24 100755
--- a/scripts/build/lb_source_disk
+++ b/scripts/build/lb_source_disk
@@ -66,6 +66,12 @@ case "${LB_MODE}" in
 		TRACE=""
 		;;
 
+	kubuntu)
+		TITLE="Kubuntu"
+		STRING="Build ${ARCHITECTURE}"
+		TRACE=""
+		;;
+
 	*)
 		STRING="Snapshot ${ARCHITECTURE}"
 		TRACE=""
diff --git a/scripts/build/lb_source_usb b/scripts/build/lb_source_usb
index 0af9e10..9a598e4 100755
--- a/scripts/build/lb_source_usb
+++ b/scripts/build/lb_source_usb
@@ -93,9 +93,7 @@ Echo_warning "!!! The following error/warning messages can be ignored !!!"
 Losetup $FREELO source.img 0
 Chroot chroot "parted -s ${FREELO} mklabel msdos" || true
 Chroot chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true
-Chroot chroot "parted -s ${FREELO} set 1 lba off" || true
-sleep 1
-${LB_LOSETUP} -d ${FREELO}
+Lodetach ${FREELO}
 
 Losetup $FREELO source.img 1
 
@@ -123,10 +121,14 @@ ${LB_ROOT_COMMAND} mount ${FREELO} source.tmp
 cp -r source/* source.tmp
 ${LB_ROOT_COMMAND} umount source.tmp
 rmdir source.tmp
-sleep 1
-${LB_LOSETUP} -d ${FREELO}
+Lodetach ${FREELO}
 Echo_warning "!!! The above error/warning messages can be ignored !!!"
 
+FREELO="$(${LB_LOSETUP} -f)"
+Losetup "$FREELO" source.img 0
+Chroot chroot "parted -s ${FREELO} set 1 lba off" || true
+Lodetach ${FREELO}
+
 if [ -n "${MAKEDEV}" ]
 then
 	rm -rf chroot/dev
diff --git a/archives/live.debian.net.key b/share/archives/live.debian.net.key
similarity index 100%
rename from archives/live.debian.net.key
rename to share/archives/live.debian.net.key
diff --git a/archives/live.debian.net b/share/archives/live.debian.net.list
similarity index 100%
rename from archives/live.debian.net
rename to share/archives/live.debian.net.list
diff --git a/share/hooks/001-update-apt-file-cache.chroot b/share/hooks/001-update-apt-file-cache.chroot
new file mode 100755
index 0000000..283fc2c
--- /dev/null
+++ b/share/hooks/001-update-apt-file-cache.chroot
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+set -e
+
+# Update the Apt File cache.
+#
+# This allows to use using apt-file out-of-the-box.
+
+. /chroot/root/config/binary
+
+if [ -x /usr/bin/apt-file ] && [ "${LB_APT_INDICES}" = "true" ]
+then
+	apt-file update
+fi
diff --git a/share/hooks/002-update-apt-xapian-index.chroot b/share/hooks/002-update-apt-xapian-index.chroot
new file mode 100755
index 0000000..dcb39b2
--- /dev/null
+++ b/share/hooks/002-update-apt-xapian-index.chroot
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+set -e
+
+# Update the Apt Xapian index.
+#
+# The package would do this itself, but (a) it checks policy-rc.d which says it
+# is not allowed to, and (b) it wants to build the index in the background which
+# will be racy in the context of live-build.
+
+if [ -x /usr/sbin/update-apt-xapian-index ]
+then
+	PYTHONDONTWRITEBYTECODE=1 /usr/sbin/update-apt-xapian-index --force --quiet
+fi
diff --git a/share/hooks/003-update-mlocate-database.chroot b/share/hooks/003-update-mlocate-database.chroot
new file mode 100755
index 0000000..6bfdb3d
--- /dev/null
+++ b/share/hooks/003-update-mlocate-database.chroot
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+set -e
+
+# Update the mlocate database.
+#
+# It is convenient for this to be already up to date on the live system, and it
+# means that if the live system is later installed to a hard disk then less
+# work will be required after installation.
+
+if [ -x /usr/bin/updatedb.mlocate ]
+then
+	updatedb.mlocate
+fi
diff --git a/share/hooks/004-remove-gnome-icon-cache.chroot b/share/hooks/004-remove-gnome-icon-cache.chroot
new file mode 100755
index 0000000..f562fd9
--- /dev/null
+++ b/share/hooks/004-remove-gnome-icon-cache.chroot
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+# Remove GNOME icon cache.
+#
+# This saves space some space (e.g. on Kubuntu).
+
+rm -f /usr/share/icons/*/icon-theme.cache
diff --git a/share/hooks/005-remove-python-py.chroot b/share/hooks/005-remove-python-py.chroot
new file mode 100755
index 0000000..ff70583
--- /dev/null
+++ b/share/hooks/005-remove-python-py.chroot
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+# Remove Python *.py files.
+#
+# This removes byte-compiled Python modules to save some space.
+
+find /usr -name "*.pyc" -print0 | xargs -0r rm -f

-- 
live-build



More information about the debian-live-changes mailing list